Added WS_TABSTOP to uiButton on Windows.
This commit is contained in:
parent
002d95c2c2
commit
c6daf8d308
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue