Set password dialog modal and transient for the parent window also if it
2008-05-27 Carlos Garnacho <carlos@imendio.com> * gtk/gtkmountoperation.c (gtk_mount_operation_ask_password): Set password dialog modal and transient for the parent window also if it was specified in the constructor. Bug #531864. svn path=/trunk/; revision=20182
This commit is contained in:
committed by
Carlos Garnacho
parent
f3a6fecb67
commit
416bda1204
@ -621,7 +621,12 @@ gtk_mount_operation_ask_password (GMountOperation *mount_op,
|
||||
|
||||
g_object_notify (G_OBJECT (operation), "is-showing");
|
||||
|
||||
if (priv->parent_window == NULL && priv->screen)
|
||||
if (priv->parent_window)
|
||||
{
|
||||
gtk_window_set_transient_for (window, priv->parent_window);
|
||||
gtk_window_set_modal (window, TRUE);
|
||||
}
|
||||
else if (priv->screen)
|
||||
gtk_window_set_screen (GTK_WINDOW (dialog), priv->screen);
|
||||
|
||||
gtk_widget_show_all (GTK_WIDGET (dialog));
|
||||
|
||||
Reference in New Issue
Block a user