summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-63
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--gtk/gtkstatusbar.c15
5 files changed, 21 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 869257f36..37313d3fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2004-11-10 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only
+ shorten the label if it actually overlaps the resize grip.
+
* gdk/linux-fb/*: Fix many sparse warnings. (#157253,
Kjartan Maraas.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 869257f36..37313d3fb 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2004-11-10 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only
+ shorten the label if it actually overlaps the resize grip.
+
* gdk/linux-fb/*: Fix many sparse warnings. (#157253,
Kjartan Maraas.
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 869257f36..37313d3fb 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,5 +1,8 @@
2004-11-10 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only
+ shorten the label if it actually overlaps the resize grip.
+
* gdk/linux-fb/*: Fix many sparse warnings. (#157253,
Kjartan Maraas.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 869257f36..37313d3fb 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,8 @@
2004-11-10 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only
+ shorten the label if it actually overlaps the resize grip.
+
* gdk/linux-fb/*: Fix many sparse warnings. (#157253,
Kjartan Maraas.
diff --git a/gtk/gtkstatusbar.c b/gtk/gtkstatusbar.c
index aa41ce2c9..0844335f6 100644
--- a/gtk/gtkstatusbar.c
+++ b/gtk/gtkstatusbar.c
@@ -776,7 +776,7 @@ gtk_statusbar_size_allocate (GtkWidget *widget,
if (statusbar->has_resize_grip && statusbar->grip_window)
{
- GdkRectangle rect;
+ GdkRectangle rect, overlap;
GtkAllocation allocation;
get_grip_rect (statusbar, &rect);
@@ -787,11 +787,14 @@ gtk_statusbar_size_allocate (GtkWidget *widget,
rect.width, rect.height);
allocation = statusbar->label->allocation;
- allocation.width -= rect.width;
- if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
- allocation.x += rect.width;
-
- gtk_widget_size_allocate (statusbar->label, &allocation);
+ if (gdk_rectangle_intersect (&rect, &allocation, &overlap))
+ {
+ allocation.width -= rect.width;
+ if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
+ allocation.x += rect.width;
+
+ gtk_widget_size_allocate (statusbar->label, &allocation);
+ }
}
}