diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/Window.cc | 7 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.6: | 2 | Changes 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); |