]> Dogcows Code - chaz/openbox/commitdiff
add comment for bugfix
authorDana Jansens <danakj@orodu.net>
Fri, 17 Jan 2003 04:25:23 +0000 (04:25 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 17 Jan 2003 04:25:23 +0000 (04:25 +0000)
otk/widget.cc

index c49f199af29eab89ebcfcecfc8dc81860362c1af..e53e3585e395b792173362b5c696a31345412a24 100644 (file)
@@ -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;
This page took 0.021454 seconds and 4 git commands to generate.