Fix window focus after the last commit

Initialize m_disableFocusFromKbd, added by the parent commit, correctly
to "false" and not "true".

See https://github.com/wxWidgets/wxWidgets/pull/1516
This commit is contained in:
Vadim Zeitlin 2020-07-19 17:24:43 +02:00
parent bbdd5b4984
commit 005b6dc88b

View File

@ -320,7 +320,7 @@ wxWindowBase::wxWindowBase()
m_containingSizer = NULL;
m_autoLayout = false;
m_disableFocusFromKbd = true;
m_disableFocusFromKbd = false;
#if wxUSE_DRAG_AND_DROP
m_dropTarget = NULL;