From: Dana Jansens Date: Fri, 17 Jan 2003 04:25:23 +0000 (+0000) Subject: add comment for bugfix X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=f29a2e9b0733e94e2cc27e6f4310ca62f8f07296;p=chaz%2Fopenbox add comment for bugfix --- diff --git a/otk/widget.cc b/otk/widget.cc index c49f199a..e53e3585 100644 --- a/otk/widget.cc +++ b/otk/widget.cc @@ -153,6 +153,8 @@ void Widget::setGeometry(int x, int y, int width, int height) _rect = Rect(x, y, width, height); _dirty = true; + // don't use an XMoveResizeWindow here, because it doesn't seem to move + // windows with StaticGravity? This works, that didn't. XResizeWindow(**display, _window, width, height); XMoveWindow(**display, _window, x, y); _ignore_config+=2;