aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lumina-desktop/LSession.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index 534dd7e3..afc6d2b1 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -618,6 +618,8 @@ void LSession::adjustWindowGeom(WId win, bool maximize){
if(DEBUG){
qDebug() << " - New Geom:" << geom << fgeom;
}
+ XCB->WM_Request_MoveResize_Window(win, geom);
+ /*
//Need to use the frame origin point with the window size (for some reason - strange Fluxbox issue)
XCB->MoveResizeWindow(win, QRect(fgeom.topLeft(), geom.size()) );
@@ -626,7 +628,7 @@ void LSession::adjustWindowGeom(WId win, bool maximize){
if(nfgeom!=fgeom){
if(DEBUG){ qDebug() << " -- Adjust again:" << fgeom; }
XCB->MoveResizeWindow(win, geom);
- }
+ }*/
}
}
bgstack15