app/gui/file-open-location-dialog.c increased horizontal size request to

2004-08-11  Sven Neumann  <sven@gimp.org>

	* app/gui/file-open-location-dialog.c
	* app/widgets/gimpprogressbox.c: increased horizontal size request
	to reduce resizing.
This commit is contained in:
Sven Neumann 2004-08-10 23:37:06 +00:00 committed by Sven Neumann
parent 28fcd47b35
commit 846bacd905
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2004-08-11 Sven Neumann <sven@gimp.org>
* app/gui/file-open-location-dialog.c
* app/widgets/gimpprogressbox.c: increased horizontal size request
to reduce resizing.
2004-08-11 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails):

View File

@ -116,7 +116,7 @@ file_open_location_dialog_show (Gimp *gimp,
file_open_location_completion,
NULL, NULL);
gtk_widget_set_size_request (entry, 300, -1);
gtk_widget_set_size_request (entry, 400, -1);
gtk_box_pack_start (GTK_BOX (vbox), entry, FALSE, FALSE, 0);
gtk_widget_show (entry);

View File

@ -116,7 +116,7 @@ file_open_location_dialog_show (Gimp *gimp,
file_open_location_completion,
NULL, NULL);
gtk_widget_set_size_request (entry, 300, -1);
gtk_widget_set_size_request (entry, 400, -1);
gtk_box_pack_start (GTK_BOX (vbox), entry, FALSE, FALSE, 0);
gtk_widget_show (entry);

View File

@ -211,7 +211,7 @@ gimp_progress_box_new (void)
gtk_widget_show (box->label);
box->progress = gtk_progress_bar_new ();
gtk_widget_set_size_request (box->progress, 150, 20);
gtk_widget_set_size_request (box->progress, 250, 20);
gtk_box_pack_start (GTK_BOX (box), box->progress, FALSE, FALSE, 0);
gtk_widget_show (box->progress);