aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-selection-button.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/em-folder-selection-button.c')
-rw-r--r--mail/em-folder-selection-button.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/em-folder-selection-button.c b/mail/em-folder-selection-button.c
index ec818221b4..d3d44e5c23 100644
--- a/mail/em-folder-selection-button.c
+++ b/mail/em-folder-selection-button.c
@@ -208,9 +208,13 @@ folder_selection_button_clicked (GtkButton *button)
GtkWidget *dialog;
GtkTreeSelection *selection;
GtkSelectionMode mode;
+ gpointer parent;
priv = EM_FOLDER_SELECTION_BUTTON_GET_PRIVATE (button);
+ parent = gtk_widget_get_toplevel (GTK_WIDGET (button));
+ parent = GTK_WIDGET_TOPLEVEL (parent) ? parent : NULL;
+
emft = (EMFolderTree *) em_folder_tree_new ();
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (emft));
@@ -225,7 +229,7 @@ folder_selection_button_clicked (GtkButton *button)
EMFT_EXCLUDE_VIRTUAL | EMFT_EXCLUDE_VTRASH);
dialog = em_folder_selector_new (
- emft, EM_FOLDER_SELECTOR_CAN_CREATE,
+ parent, emft, EM_FOLDER_SELECTOR_CAN_CREATE,
priv->title, priv->caption, NULL);
if (priv->multiple_select)