diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-09-11 20:01:11 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-09-11 20:01:11 (GMT) |
commit | bf620f96df0942db356255f8af7f522ae46af82e (patch) | |
tree | c12fba9aac1980b0f1216d434be0a644080bdf6d /src | |
parent | 8d0fb85bbc8eb1267f934873ddee285b0eb3f5f1 (diff) | |
download | fluxbox-bf620f96df0942db356255f8af7f522ae46af82e.zip fluxbox-bf620f96df0942db356255f8af7f522ae46af82e.tar.bz2 |
fix program crashes caused by unshading
Diffstat (limited to 'src')
-rw-r--r-- | src/FbWinFrame.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc index 435f2fb..5b91218 100644 --- a/src/FbWinFrame.cc +++ b/src/FbWinFrame.cc | |||
@@ -1489,7 +1489,8 @@ void FbWinFrame::applyDecorations(bool do_move) { | |||
1489 | client_move = true; | 1489 | client_move = true; |
1490 | } | 1490 | } |
1491 | 1491 | ||
1492 | reconfigure(); | 1492 | if (do_move) |
1493 | reconfigure(); | ||
1493 | if (client_move) | 1494 | if (client_move) |
1494 | frameExtentSig().notify(); | 1495 | frameExtentSig().notify(); |
1495 | } | 1496 | } |