diff --git a/ChangeLog b/ChangeLog index 6d0334bc3a..563d86c9da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-08 Henrik Brix Andersen + + * plug-ins/common/screenshot.c (shoot_dialog): HIGify the + screenshot plug-in. + 2004-05-08 Sven Neumann * app/display/gimpstatusbar.c (gimp_statusbar_resize_cursor): diff --git a/plug-ins/common/screenshot.c b/plug-ins/common/screenshot.c index ba50356431..7f1dec438d 100644 --- a/plug-ins/common/screenshot.c +++ b/plug-ins/common/screenshot.c @@ -519,13 +519,13 @@ shoot_dialog (void) NULL); main_vbox = gtk_vbox_new (FALSE, 4); - gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 6); + gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), main_vbox, TRUE, TRUE, 0); gtk_widget_show (main_vbox); /* single window */ - frame = gtk_frame_new (_("Grab")); + frame = gimp_frame_new (_("Grab")); gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); vbox = gtk_vbox_new (FALSE, 2);