Added WS_TABSTOP to uiButton on Windows.

This commit is contained in:
Pietro Gagliardi 2015-04-07 22:23:25 -04:00
parent d0fa7b2cb1
commit a272242052
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ uiControl *uiNewButton(const char *text)
p.dwExStyle = 0;
p.lpClassName = L"button";
p.dwStyle = BS_PUSHBUTTON;
p.dwStyle = BS_PUSHBUTTON | WS_TABSTOP;
p.hInstance = hInstance;
p.onWM_COMMAND = onWM_COMMAND;
p.onWM_NOTIFY = onWM_NOTIFY;