aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorsimonb <simonb>2006-06-26 11:45:14 (GMT)
committersimonb <simonb>2006-06-26 11:45:14 (GMT)
commit6e60c53ae7fbffa034da952e061f5a81d0f082be (patch)
treef0214f76a373136fb90734e7e9484c1268f3bc4a /src/Window.cc
parentee02bc2258595060a4b1ee0bcab5a76c6a9a5af2 (diff)
downloadfluxbox-6e60c53ae7fbffa034da952e061f5a81d0f082be.zip
fluxbox-6e60c53ae7fbffa034da952e061f5a81d0f082be.tar.bz2
fix _NET_FRAME_EXTENTS
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 5fb5d86..2016ab9 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -3209,8 +3209,10 @@ void FluxboxWindow::applyDecorations(bool initial) {
3209 } 3209 }
3210 3210
3211 frame().reconfigure(); 3211 frame().reconfigure();
3212 if (!initial && client_move) 3212 if (!initial && client_move) {
3213 Fluxbox::instance()->updateFrameExtents(*this);
3213 sendConfigureNotify(); 3214 sendConfigureNotify();
3215 }
3214 3216
3215} 3217}
3216 3218
@@ -3936,9 +3938,6 @@ void FluxboxWindow::sendConfigureNotify(bool send_to_netizens) {
3936 } 3938 }
3937 } // end for 3939 } // end for
3938 3940
3939 if (send_to_netizens) {
3940 Fluxbox::instance()->updateFrameExtents(*this);
3941 }
3942} 3941}
3943 3942
3944 3943