diff options
author | Ted Gould <ted@canonical.com> | 2009-09-10 16:03:59 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-10 16:03:59 -0500 |
commit | 0cb4e60ef1a5034dec49ea28f0545055c0460597 (patch) | |
tree | 975a8eb520c2ce00df635738dcd432142cbc4e37 | |
parent | edba4f977f7ba9692e48cf40dea2466b07e967e1 (diff) | |
download | ayatana-indicator-session-0cb4e60ef1a5034dec49ea28f0545055c0460597.tar.gz ayatana-indicator-session-0cb4e60ef1a5034dec49ea28f0545055c0460597.tar.bz2 ayatana-indicator-session-0cb4e60ef1a5034dec49ea28f0545055c0460597.zip |
Setting the window icon now that we have the right path
-rw-r--r-- | src/gtk-dialog/logout-dialog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gtk-dialog/logout-dialog.c b/src/gtk-dialog/logout-dialog.c index a80dbef..a94c649 100644 --- a/src/gtk-dialog/logout-dialog.c +++ b/src/gtk-dialog/logout-dialog.c @@ -298,8 +298,9 @@ logout_dialog_init (LogoutDialog *logout_dialog) GTK_RESPONSE_OK); gtk_widget_grab_default (logout_dialog->ok_button); - /* Title */ + /* Window Title and Icon */ gtk_window_set_title (GTK_WINDOW(logout_dialog), _(title_strings[logout_dialog->action])); + gtk_window_set_icon_name (GTK_WINDOW(logout_dialog), icon_strings[logout_dialog->action]); /* hbox */ logout_dialog->hbox = gtk_hbox_new (FALSE, 12); |