aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrame.hh
diff options
context:
space:
mode:
authorThomas Lübking <thomas.luebking@gmail.com>2016-07-23 21:59:22 (GMT)
committerMathias Gumz <akira@fluxbox.org>2016-07-30 09:22:24 (GMT)
commit4bc08709f196e513914e453e2a1117c0823d0a41 (patch)
treebecf525ee9e7b11f96403e9e55f6934fab467d06 /src/FbWinFrame.hh
parentbaaf477d46e619127b91faf59be2cf2c2c95afff (diff)
downloadfluxbox-4bc08709f196e513914e453e2a1117c0823d0a41.zip
fluxbox-4bc08709f196e513914e453e2a1117c0823d0a41.tar.bz2
allow to force moveResize and use on applyState
applyState also requires some updates implied by moveResize, notably the reconfigure, the setBackground on the window etcetc. Instead of testing what'd be missing from a moveResize, we just force the latter to apply even when seeming unrequired. This has notable impact when switching fullscreen state for a window with fullscreen dimensions. BUG: 992
Diffstat (limited to 'src/FbWinFrame.hh')
-rw-r--r--src/FbWinFrame.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbWinFrame.hh b/src/FbWinFrame.hh
index f8961c8..617b9b9 100644
--- a/src/FbWinFrame.hh
+++ b/src/FbWinFrame.hh
@@ -92,7 +92,7 @@ public:
92 // can elect to ignore move or resize (mainly for use of move/resize individual functions 92 // can elect to ignore move or resize (mainly for use of move/resize individual functions
93 void moveResize(int x, int y, 93 void moveResize(int x, int y,
94 unsigned int width, unsigned int height, 94 unsigned int width, unsigned int height,
95 bool move = true, bool resize = true); 95 bool move = true, bool resize = true, bool force = false);
96 96
97 // move without transparency or special effects (generally when dragging) 97 // move without transparency or special effects (generally when dragging)
98 void quietMoveResize(int x, int y, 98 void quietMoveResize(int x, int y,