diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-17 04:25:23 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-17 04:25:23 +0000 |
| commit | f29a2e9b0733e94e2cc27e6f4310ca62f8f07296 (patch) | |
| tree | 35bfb2931a4a5c6b3118cc825a2ebc54b9d05b6d /otk/widget.cc | |
| parent | 6bcfd5d2183f216f339d61672885524a90612ff7 (diff) | |
add comment for bugfix
Diffstat (limited to 'otk/widget.cc')
| -rw-r--r-- | otk/widget.cc | 2 |
1 files changed, 2 insertions, 0 deletions
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; |
