2002-06-18  Jody Goldberg <jody@gnome.org>

	http://bugzilla.gnome.org/show_bug.cgi?id=85628
	* background-properties-capplet.c (main) : The dialog
	    - should not be modal
	    - has no parent to destroy with
	    - and should have a seperator
	    - set default response
This commit is contained in:
Jody Goldberg 2002-06-19 00:21:26 +00:00 committed by Jody Goldberg
parent 9ae0ce4eeb
commit 0977fadab0
3 changed files with 19 additions and 8 deletions

View file

@ -1,3 +1,12 @@
2002-06-18 Jody Goldberg <jody@gnome.org>
http://bugzilla.gnome.org/show_bug.cgi?id=85628
* background-properties-capplet.c (main) : The dialog
- should not be modal
- has no parent to destroy with
- and should have a seperator
- set default response
2002-06-17 Jody Goldberg <jody@gnome.org>
* Release 2.0.0

View file

@ -225,16 +225,16 @@ update_color_widget_labels_and_visibility (ApplierSet *set, const gchar *value_s
switch (orientation) {
case ORIENTATION_SOLID: /* solid */
color1_string = _("C_olor");
color1_string = _("C_olor:");
two_colors = FALSE;
break;
case ORIENTATION_HORIZ: /* horiz */
color1_string = _("_Left Color");
color2_string = _("_Right Color");
color1_string = _("_Left Color:");
color2_string = _("_Right Color:");
break;
case ORIENTATION_VERT: /* vert */
color1_string = _("_Top Color");
color2_string = _("_Bottom Color");
color1_string = _("_Top Color:");
color2_string = _("_Bottom Color:");
break;
default:
break;
@ -430,7 +430,7 @@ create_dialog (ApplierSet *set)
g_slist_free (group);
label = gtk_label_new_with_mnemonic (_("_Picture"));
label = gtk_label_new_with_mnemonic (_("Select _picture:"));
gtk_frame_set_label_widget (GTK_FRAME (WID ("picture_frame")),
label);
gtk_label_set_mnemonic_widget (GTK_LABEL (label),
@ -581,10 +581,12 @@ main (int argc, char **argv)
setup_dialog (dialog, NULL, set);
dialog_win = gtk_dialog_new_with_buttons
(_("Background Preferences"), NULL, -1,
(_("Background Preferences"), NULL, 0,
GTK_STOCK_HELP, GTK_RESPONSE_HELP,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
NULL);
gtk_dialog_set_default_response (GTK_DIALOG (dialog_win),
GTK_RESPONSE_CLOSE);
pixbuf = gdk_pixbuf_new_from_file (GNOMECC_DATA_DIR "/icons/background-capplet.png", NULL);
gtk_window_set_icon (GTK_WINDOW(dialog_win), pixbuf);

View file

@ -251,7 +251,7 @@ background picture.</property>
<child>
<widget class="GtkLabel" id="border_shading_label">
<property name="visible">True</property>
<property name="label" translatable="yes">Bor_der the picture with a:</property>
<property name="label" translatable="yes">Picture bor_der:</property>
<property name="use_underline">True</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>