aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-09-29 15:00:06 (GMT)
committerrathnor <rathnor>2003-09-29 15:00:06 (GMT)
commitcb1a64576e259c98f2825e4b88dcd27b8cd93e1c (patch)
tree586c86befa155192c2d27d8e4aad3c764cbb9fa3 /src
parent81378f9494db4ab1d033947532d7fac968095ecd (diff)
downloadfluxbox-cb1a64576e259c98f2825e4b88dcd27b8cd93e1c.zip
fluxbox-cb1a64576e259c98f2825e4b88dcd27b8cd93e1c.tar.bz2
fix aterm opaue move updating - thanks Mathias Gumz
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index e6ff0c6..8609861 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.236 2003/09/29 14:58:15 rathnor Exp $ 25// $Id: Window.cc,v 1.237 2003/09/29 15:00:06 rathnor Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -2751,8 +2751,11 @@ void FluxboxWindow::stopMoving() {
2751 frame().show(); 2751 frame().show();
2752 } 2752 }
2753 fluxbox->ungrab(); 2753 fluxbox->ungrab();
2754 } else 2754 } else {
2755 moveResize(frame().x(), frame().y(), frame().width(), frame().height()); 2755 moveResize(frame().x(), frame().y(), frame().width(), frame().height());
2756 sendConfigureNotify();
2757 }
2758
2756 2759
2757 screen().hideGeometry(); 2760 screen().hideGeometry();
2758 XUngrabPointer(display, CurrentTime); 2761 XUngrabPointer(display, CurrentTime);