aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-25 16:05:10 -0400
committerKen Moore <ken@ixsystems.com>2017-05-25 16:05:10 -0400
commit1140e4075b3c661940134de7ccafeb4cd2daac88 (patch)
tree37ee45f3a81342ae4b7f0ef78d88367c08d8d184 /src-qt5
parentenable some debugging on the virtualbox window detection/adjustment routine. (diff)
downloadlumina-1140e4075b3c661940134de7ccafeb4cd2daac88.tar.gz
lumina-1140e4075b3c661940134de7ccafeb4cd2daac88.tar.bz2
lumina-1140e4075b3c661940134de7ccafeb4cd2daac88.zip
Disable the VirtualBox fullscreen detection/fix logic
After testing this more robustly and with more variations, the issue appears to be so ingrained into the Fluxbox state/property event handling that anything we do from the Lumina side is quickly overwritten/ignored by Fluxbox.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/lumina-desktop/LSession.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop/LSession.cpp b/src-qt5/core/lumina-desktop/LSession.cpp
index 8b143449..d03ab4d3 100644
--- a/src-qt5/core/lumina-desktop/LSession.cpp
+++ b/src-qt5/core/lumina-desktop/LSession.cpp
@@ -686,7 +686,7 @@ void LSession::WindowPropertyEvent(WId win){
//Emit the single-app signal if the window in question is one used by the task manager
if(RunningApps.contains(win)){
if(DEBUG){ qDebug() << "Single-window property event"; }
- if( XCB->WindowClass(win).contains("VirtualBox")){
+ /*if( XCB->WindowClass(win).contains("VirtualBox")){
qDebug() << "Found VirtualBox Window:";
QList<LXCB::WINDOWSTATE> states = XCB->WM_Get_Window_States(win);
if(states.contains(LXCB::S_FULLSCREEN) && !states.contains(LXCB::S_HIDDEN)){
@@ -694,7 +694,7 @@ void LSession::WindowPropertyEvent(WId win){
XCB->WM_Set_Window_Type(win, QList<LXCB::WINDOWTYPE>() << LXCB::T_NORMAL << LXCB::T_UTILITY );
XCB->RestoreWindow(win);
}
- }
+ }*/
//emit WindowListEvent();
WindowPropertyEvent(); //Run through the entire routine for window checks
}else if(RunningTrayApps.contains(win)){
bgstack15