mirror of https://github.com/GNOME/gimp.git
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:
parent
28fcd47b35
commit
846bacd905
|
@ -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):
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue