diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-12-13 03:55:04 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-12-13 03:55:04 +0000 |
commit | 66745a993d2d017954e2cde30e92c806b6cde449 (patch) | |
tree | 81ee044f366a0e2f37a23af1bd14223ef9e1fb4e /gtk/gtkmountoperation.c | |
parent | 185529d2f88a5362bc175787940e3cc44d94ff1f (diff) | |
download | gtk+-66745a993d2d017954e2cde30e92c806b6cde449.tar.gz |
Set an empty title on password dialogs. Pointed out by Máirín Duffy.
* gtk/gtkmountoperation.c: Set an empty title on password dialogs.
Pointed out by Máirín Duffy.
svn path=/trunk/; revision=21873
Diffstat (limited to 'gtk/gtkmountoperation.c')
-rw-r--r-- | gtk/gtkmountoperation.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c index 9172d9ef55..53fe5c1121 100644 --- a/gtk/gtkmountoperation.c +++ b/gtk/gtkmountoperation.c @@ -473,6 +473,7 @@ gtk_mount_operation_ask_password (GMountOperation *mount_op, gtk_box_set_spacing (GTK_BOX (dialog->action_area), 6); gtk_window_set_resizable (window, FALSE); + gtk_window_set_title (window, ""); gtk_window_set_icon_name (window, GTK_STOCK_DIALOG_AUTHENTICATION); gtk_dialog_add_buttons (dialog, |