Don't discard all current input processing flags in response to WM_GETDLGCODE

Some current input processing flags, like DLGC_HASSETSEL, should be retained because they are in use (in wxWindowMSW::SetFocusFromKbd() for instance).

Closes #17945.
This commit is contained in:
Artur Wieczorek
2017-09-06 12:19:13 +02:00
parent 51e7994cff
commit 52d6b0ae85
2 changed files with 5 additions and 1 deletions

View File

@@ -201,6 +201,7 @@ wxMSW:
- Fix caching of wxFONTSTYLE_SLANT fonts in wxTheFontList.
- Fix wxTextCtrl::XYToPosition() and PositionToXY().
- Fix updating radio groups when non-radio item is inserted to wxMenu.
- Fix autoselecting the contents of wxTextCtrl with wxWANTS_CHARS style.
wxOSX: