diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-31 00:35:30 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-31 00:35:30 +0200 |
| commit | 8d31086aed4aa91232cbaad9cf88d720e6329bcf (patch) | |
| tree | 390a303abde286815801932c689c609900c33234 /alf | |
| parent | 90c561d8e2d0693890f58167a30eca84509262ba (diff) | |
native radio button: remove incorrect WS_TABSTOP on creation
Diffstat (limited to 'alf')
| -rw-r--r-- | alf/alfnativebtn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alf/alfnativebtn.cpp b/alf/alfnativebtn.cpp index 23997b5..8c73e5d 100644 --- a/alf/alfnativebtn.cpp +++ b/alf/alfnativebtn.cpp @@ -41,7 +41,7 @@ ALF_AddNativeRadioButton(HWND parent, WORD id, int x, int y, const TCHAR *text) HWND hwnd = CreateWindowEx(0, TEXT("BUTTON"), text, - WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_AUTORADIOBUTTON, + WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON, 0, 0, 100, 100, parent, (HMENU)(ULONG_PTR)id, |
