add comment for bugfix

This commit is contained in:
Dana Jansens 2003-01-17 04:25:23 +00:00
parent 6bcfd5d218
commit f29a2e9b07

View file

@ -153,6 +153,8 @@ void Widget::setGeometry(int x, int y, int width, int height)
_rect = Rect(x, y, width, height); _rect = Rect(x, y, width, height);
_dirty = true; _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); XResizeWindow(**display, _window, width, height);
XMoveWindow(**display, _window, x, y); XMoveWindow(**display, _window, x, y);
_ignore_config+=2; _ignore_config+=2;