aboutsummaryrefslogtreecommitdiff
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
parent81378f9494db4ab1d033947532d7fac968095ecd (diff)
downloadfluxbox_pavel-cb1a64576e259c98f2825e4b88dcd27b8cd93e1c.zip
fluxbox_pavel-cb1a64576e259c98f2825e4b88dcd27b8cd93e1c.tar.bz2
fix aterm opaue move updating - thanks Mathias Gumz
-rw-r--r--ChangeLog2
-rw-r--r--src/Window.cc7
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 48106b1..6a28696 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
1(Format: Year/Month/Day) 1(Format: Year/Month/Day)
2Changes for 0.9.6: 2Changes for 0.9.6:
3*03/09/29: 3*03/09/29:
4 * Fix aterm not updating on opaque move (Thanks Mathias Gumz)
5 Window.cc
4 * Fix resize calculations, particularly wrt base_width/height (Simon) 6 * Fix resize calculations, particularly wrt base_width/height (Simon)
5 - fixes abiword resize issues 7 - fixes abiword resize issues
6 Window.hh/cc WinClient.hh/cc 8 Window.hh/cc WinClient.hh/cc
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);