forked from AuroraMiddleware/gtk
Give the path bar arrows some more space.
2004-09-21 Matthias Clasen <mclasen@redhat.com> * gtk/gtkpathbar.c (gtk_path_bar_size_request): Give the path bar arrows some more space.
This commit is contained in:
parent
6f08d4cf61
commit
594cc47dbe
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user