From a88835e253a73108229bb6b0cfc630e2fc756d30 Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Sat, 25 Nov 2017 23:26:31 -0600 Subject: [PATCH] find/replace: bring window to front when activated --- src/dialog_search_replace.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dialog_search_replace.cpp b/src/dialog_search_replace.cpp index ef36ad5b0..ddd6e0c42 100644 --- a/src/dialog_search_replace.cpp +++ b/src/dialog_search_replace.cpp @@ -188,4 +188,5 @@ void DialogSearchReplace::Show(agi::Context *context, bool replace) { diag->find_edit->SetFocus(); diag->find_edit->SelectAll(); diag->wxDialog::Show(); + diag->Raise(); }