summaryrefslogtreecommitdiff
path: root/wx+/popup_dlg.cpp
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-11-01 17:16:37 -0500
committerB Stack <bgstack15@gmail.com>2020-11-01 17:16:37 -0500
commit2a57306c461964f860ba1cb51f1bf96c954173e0 (patch)
tree9939cdd1735bf15e97ad6700419c0604cac7c59e /wx+/popup_dlg.cpp
parentMerge branch '11.2' into 'master' (diff)
downloadFreeFileSync-2a57306c461964f860ba1cb51f1bf96c954173e0.tar.gz
FreeFileSync-2a57306c461964f860ba1cb51f1bf96c954173e0.tar.bz2
FreeFileSync-2a57306c461964f860ba1cb51f1bf96c954173e0.zip
add upstream 11.3
Diffstat (limited to 'wx+/popup_dlg.cpp')
-rw-r--r--wx+/popup_dlg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/wx+/popup_dlg.cpp b/wx+/popup_dlg.cpp
index ee682e19..541a787c 100644
--- a/wx+/popup_dlg.cpp
+++ b/wx+/popup_dlg.cpp
@@ -233,6 +233,8 @@ public:
GetSizer()->SetSizeHints(this); //~=Fit() + SetMinSize()
Center(); //needs to be re-applied after a dialog size change!
+ Raise(); //[!] popup may be triggered by ffs_batch job running in the background!
+
if (m_buttonAccept->IsEnabled())
m_buttonAccept->SetFocus();
else if (m_buttonAccept2->IsEnabled())
bgstack15