diff --git a/ChangeLog b/ChangeLog index 7a0e56b1e..ceb1f894e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ 2002-05-30 Stephen Browne - * src/tools/metacity-properties.glade + * src/tools/metacity-properties.c: + Some day I'll make all my changes in one commit :) + Needed to rip out code for adding icon to the dialog since it was + removed from teh galde file in my previous change. + +2002-05-30 Stephen Browne + + * src/tools/metacity-properties.glade: Some UI changes demanded by Pat and Calum. Make Close default response Change mnemonic for Click so as not to clash with Close diff --git a/src/tools/metacity-properties.c b/src/tools/metacity-properties.c index 9caf00aef..76534cc89 100644 --- a/src/tools/metacity-properties.c +++ b/src/tools/metacity-properties.c @@ -105,7 +105,7 @@ main (int argc, char **argv) { GladeXML *xml; GdkPixbuf *pixbuf; - GtkWidget *window, *icon; + GtkWidget *window; bindtextdomain (GETTEXT_PACKAGE, METACITY_LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); @@ -120,13 +120,11 @@ main (int argc, char **argv) point_radio = glade_xml_get_widget (xml, "Pointfocus"); autoraise_check = glade_xml_get_widget (xml, "Autoraise"); window = glade_xml_get_widget (xml, "Mainwindow"); - icon = glade_xml_get_widget (xml, "Icon"); pixbuf = gdk_pixbuf_new_from_file (METACITY_PROPS_ICON_DIR "/metacity-properties.png", NULL); gtk_window_set_icon (GTK_WINDOW (window), pixbuf); - gtk_image_set_from_pixbuf (GTK_IMAGE(icon) , pixbuf); g_object_unref (G_OBJECT (pixbuf)); gconf_client = gconf_client_get_default ();