summaryrefslogtreecommitdiff
path: root/wx+/window_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/window_tools.h')
-rw-r--r--wx+/window_tools.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/wx+/window_tools.h b/wx+/window_tools.h
index 94cb2c32..45f43556 100644
--- a/wx+/window_tools.h
+++ b/wx+/window_tools.h
@@ -79,7 +79,10 @@ struct FocusPreserver
if (oldFocusId_ != wxID_ANY)
if (wxWindow* oldFocusWin = wxWindow::FindWindowById(oldFocusId_))
+ {
+ assert(oldFocusWin->IsEnabled()); //only enabled windows can have focus, so why wouldn't it be anymore?
setFocusIfActive(*oldFocusWin);
+ }
}
wxWindowID getFocusId() const { return oldFocusId_; }
bgstack15