]> Pileus Git - ~andy/gtk/commitdiff
Give the path bar arrows some more space.
authorMatthias Clasen <mclasen@redhat.com>
Tue, 21 Sep 2004 20:20:09 +0000 (20:20 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 21 Sep 2004 20:20:09 +0000 (20:20 +0000)
2004-09-21  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
bar arrows some more space.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkpathbar.c

index 948d7450fe40db992982caa4c3ac68049da6c17f..d50450f3253290980f2c7a029fd943826f0e062c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2004-09-21  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
+       bar arrows some more space.
+
        * configure.in: Check for mallinfo.
 
        * tests/testtreemodel.c: Only include malloc.h if HAVE_MALLINFO
index 948d7450fe40db992982caa4c3ac68049da6c17f..d50450f3253290980f2c7a029fd943826f0e062c 100644 (file)
@@ -1,5 +1,8 @@
 2004-09-21  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
+       bar arrows some more space.
+
        * configure.in: Check for mallinfo.
 
        * tests/testtreemodel.c: Only include malloc.h if HAVE_MALLINFO
index 948d7450fe40db992982caa4c3ac68049da6c17f..d50450f3253290980f2c7a029fd943826f0e062c 100644 (file)
@@ -1,5 +1,8 @@
 2004-09-21  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
+       bar arrows some more space.
+
        * configure.in: Check for mallinfo.
 
        * tests/testtreemodel.c: Only include malloc.h if HAVE_MALLINFO
index 948d7450fe40db992982caa4c3ac68049da6c17f..d50450f3253290980f2c7a029fd943826f0e062c 100644 (file)
@@ -1,5 +1,8 @@
 2004-09-21  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path
+       bar arrows some more space.
+
        * configure.in: Check for mallinfo.
 
        * tests/testtreemodel.c: Only include malloc.h if HAVE_MALLINFO
index 9da508c7b19ec60383ced7635c3e1f78d970b1e9..67ac552bd7e5bd0938cc8e8b830adda34c96107b 100644 (file)
@@ -253,7 +253,7 @@ gtk_path_bar_size_request (GtkWidget      *widget,
   /* Theoretically, the slider could be bigger than the other button.  But we're
    * not going to worry about that now.
    */
-  path_bar->slider_width = requisition->height / 2 + 5;
+  path_bar->slider_width = MIN(requisition->height * 2 / 3 + 5, requisition->height);
   if (path_bar->button_list && path_bar->button_list->next != NULL)
     requisition->width += (path_bar->spacing + path_bar->slider_width) * 2;