summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2002-03-19 20:09:47 +0000
committerHavoc Pennington <hp@src.gnome.org>2002-03-19 20:09:47 +0000
commit615abebd9d49fe9d6e1543d9a71bf05b2fe08966 (patch)
treedc806dc0aff59143618fc1de18f4bbab139e2738
parent62c5d3df060230bb2610e757e57075b196523b10 (diff)
downloadmetacity-615abebd9d49fe9d6e1543d9a71bf05b2fe08966.tar.gz
disable the little shaped windows with the window size, they caused a
2002-03-19 Havoc Pennington <hp@redhat.com> * src/resizepopup.c (place_vertical_size_window) (place_horizontal_size_window): disable the little shaped windows with the window size, they caused a crash anytime you tried to resize with Xft. And they were kind of on crack anyway.
-rw-r--r--ChangeLog7
-rw-r--r--src/resizepopup.c4
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b05d13d8..233f313b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-03-19 Havoc Pennington <hp@redhat.com>
+
+ * src/resizepopup.c (place_vertical_size_window)
+ (place_horizontal_size_window): disable the little shaped windows
+ with the window size, they caused a crash anytime you tried to
+ resize with Xft. And they were kind of on crack anyway.
+
2002-03-17 Havoc Pennington <hp@pobox.com>
* src/resizepopup.c (ensure_tick_windows): turn off the tick
diff --git a/src/resizepopup.c b/src/resizepopup.c
index 56972b40..e583cfed 100644
--- a/src/resizepopup.c
+++ b/src/resizepopup.c
@@ -309,6 +309,8 @@ place_vertical_size_window (MetaResizePopup *popup,
double align)
{
int w, h;
+
+ return;
if (popup->vertical_size_window == NULL)
{
@@ -336,6 +338,8 @@ place_horizontal_size_window (MetaResizePopup *popup,
double align)
{
int w, h;
+
+ return;
if (popup->horizontal_size_window == NULL)
{