diff options
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 382af66bb8..38e83234c0 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -2200,10 +2200,8 @@ e_shell_prepare_for_quit (EShell *shell) /* Make all the views insensitive so we have some modal-like behavior. */ - for (p = priv->views; p != NULL; p = p->next) { - g_print ("Insensitive %p\n", p->data); + for (p = priv->views; p != NULL; p = p->next) gtk_widget_set_sensitive (GTK_WIDGET (p->data), FALSE); - } component_ids = e_component_registry_get_id_list (priv->component_registry); |