summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoeren Sandmann <sandmann@daimi.au.dk>2003-03-28 14:39:18 +0000
committerSøren Sandmann Pedersen <ssp@src.gnome.org>2003-03-28 14:39:18 +0000
commitd5300ade9383c6e831b8dec40f9d68827578efbf (patch)
treee652095132e86374e1da0ab692ae3edf862847f8
parentf6bae8b5c21e2812f7e4bc2277c98b542b9ccfb3 (diff)
downloadmetacity-d5300ade9383c6e831b8dec40f9d68827578efbf.tar.gz
Don't cap refresh rate. Fixes problem with my last commit, where the
Fri Mar 28 15:39:35 2003 Soeren Sandmann <sandmann@daimi.au.dk> * src/window.c (update_resize): Don't cap refresh rate. Fixes problem with my last commit, where the window could get stuck with a wrong size until you released the button.
-rw-r--r--ChangeLog6
-rw-r--r--src/window.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d9ab6c1b..88870dc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 28 15:39:35 2003 Soeren Sandmann <sandmann@daimi.au.dk>
+
+ * src/window.c (update_resize): Don't cap refresh rate. Fixes
+ problem with my last commit, where the window could get stuck with
+ a wrong size until you released the button.
+
Fri Mar 28 14:13:37 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* src/window.c (update_resize): Only cap refresh rate when not
diff --git a/src/window.c b/src/window.c
index 0dffd64f..d3cf7865 100644
--- a/src/window.c
+++ b/src/window.c
@@ -6304,8 +6304,7 @@ update_resize (MetaWindow *window,
break;
}
- if (!check_moveresize_frequency (window))
- return;
+ check_moveresize_frequency (window);
old = window->rect;