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:
Matthias Clasen 2004-09-21 20:20:09 +00:00 committed by Matthias Clasen
parent 6f08d4cf61
commit 594cc47dbe
5 changed files with 13 additions and 1 deletions

View 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

View 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

View 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

View 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

View 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;