aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-05-07 18:35:28 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-05-07 18:35:28 (GMT)
commit05fa2be09642ff135eb32a4528103adf89cd71e7 (patch)
tree4f652593634f7a3f0a7b07550c1b8ac70fdecc06 /src/Window.cc
parentfaf26f16fbc023196eeb552279a591c38f889f1a (diff)
downloadfluxbox-05fa2be09642ff135eb32a4528103adf89cd71e7.zip
fluxbox-05fa2be09642ff135eb32a4528103adf89cd71e7.tar.bz2
adjust coordinates for window border in synthetic ConfigureNotify events
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 133a84f..c16d366 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -3818,8 +3818,8 @@ void FluxboxWindow::moveResizeClient(WinClient &client, int x, int y,
3818 client.moveResize(x, y, 3818 client.moveResize(x, y,
3819 frame().clientArea().width(), 3819 frame().clientArea().width(),
3820 frame().clientArea().height()); 3820 frame().clientArea().height());
3821 client.sendConfigureNotify(frame().x() + frame().clientArea().x(), 3821 client.sendConfigureNotify(frame().x() + frame().clientArea().x() + frame().window().borderWidth(),
3822 frame().y() + frame().clientArea().y(), 3822 frame().y() + frame().clientArea().y() + frame().window().borderWidth(),
3823 frame().clientArea().width(), 3823 frame().clientArea().width(),
3824 frame().clientArea().height()); 3824 frame().clientArea().height());
3825} 3825}