Although this is not a major problem, I use xmonad as WM and it is very convenient that this feature is right. I am not 100% sure, but I believe it worked in the past.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
Same problem here. It's a bit annoying in any window manager because it is impossible to give a certain geometry to the vlc window or to send it to a predefined virtual desktop.
It seems that the problem comes from a non standard use of Qt widgets, where QVLCFrames are not toplevel QWidgets. Returning to a more standard way may be difficult, so some low level X11 may be usefull, like :
The reason is in qt function qt_init in qt4-x11-4.4.3/src/gui/kernel/qapplication_x11.cpp :
if (X11->display) { // Qt part of other application // Set application name and class appName = qstrdup("Qt-subapplication"); char *app_class = 0; if (argv) { const char* p = strrchr(argv[0], '/'); app_class = qstrdup(p ? p + 1 : argv[0]); if (app_class[0]) app_class[0] = toupper(app_class[0]); } appClass = app_class; } else { // Qt controls everything (default)
For some reason, QT thinks VLC is a sub-application, i.e. there is another application dealing with WM_CLASS stuff.
Well, courmisch should say ok or not, and I'll apply after that, since he was the one introducing this Display, so I am unsure if we can do that or not.