commit bd1465de2b07f802bad434659257963fd833daa2
parent a3ee5bae26abfaf557ac0e1dbe798ed0e68dd956
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Thu, 9 Jul 2015 21:58:25 +0200
Fix folder selection dialog modality and focus on Windows.
Again, first set transient_for, then modal.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/foldersel.c b/src/foldersel.c
@@ -179,8 +179,8 @@ FolderItem *foldersel_folder_sel(Folder *cur_folder, FolderSelectionType type,
gtk_widget_grab_focus(treeview);
gtk_window_present(GTK_WINDOW(window));
- gtk_window_set_modal(GTK_WINDOW(window), TRUE);
manage_window_set_transient(GTK_WINDOW(window));
+ gtk_window_set_modal(GTK_WINDOW(window), TRUE);
cancelled = finished = FALSE;