diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-13 01:32:53 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-13 01:32:53 +0800 |
commit | 988c166c714f4186065faf2efe0d464260512ef6 (patch) | |
tree | d1b9ae487274dcaed7311e90e94a9ceb1b26a6d8 /shell/e-shell-folder-selection-dialog.c | |
parent | 15a265e7490c18483002562f0330e159128663f6 (diff) | |
download | gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar.gz gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar.bz2 gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar.lz gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar.xz gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.tar.zst gsoc2013-evolution-988c166c714f4186065faf2efe0d464260512ef6.zip |
Grab focus on the storage set view.
* e-shell-folder-selection-dialog.c
(e_shell_folder_selection_dialog_construct): Grab focus on the
storage set view.
svn path=/trunk/; revision=11937
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.c')
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index a07fac65e7..213dbd5557 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -378,7 +378,6 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s g_free (filename); - GTK_WIDGET_SET_FLAGS (priv->storage_set_view, GTK_CAN_FOCUS); gtk_signal_connect (GTK_OBJECT (priv->storage_set_view), "double_click", GTK_SIGNAL_FUNC (dbl_click_cb), folder_selection_dialog); @@ -408,6 +407,9 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s gtk_widget_show (priv->storage_set_view); gtk_widget_show (scroll_frame); + + GTK_WIDGET_SET_FLAGS (priv->storage_set_view, GTK_CAN_FOCUS); + gtk_widget_grab_focus (priv->storage_set_view); } /** |