diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-05 18:28:40 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-05 18:28:40 -0400 |
| commit | bb44712fad85ad7262ab6b82b3056753e4f1f20e (patch) | |
| tree | eeb508b0e252a1c30fbe2d6114e97e0270e55375 /zconstants_windows_amd64.go | |
| parent | 753f4316e23239c62d510240372d9a8cbba5e0f0 (diff) | |
Changed Checkbox on Windows to use BS_CHECKBOX instead of BS_AUTOCHECKBOX; this will be necessary to fix the focus issue in todo.md (see http://blogs.msdn.com/b/oldnewthing/archive/2014/05/22/10527522.aspx).
Diffstat (limited to 'zconstants_windows_amd64.go')
| -rw-r--r-- | zconstants_windows_amd64.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zconstants_windows_amd64.go b/zconstants_windows_amd64.go index 9bcb36d..ec746c7 100644 --- a/zconstants_windows_amd64.go +++ b/zconstants_windows_amd64.go @@ -6,9 +6,11 @@ const _AC_SRC_OVER = 0 const _BCM_GETIDEALSIZE = 5633 const _BI_RGB = 0 const _BM_GETCHECK = 240 +const _BM_SETCHECK = 241 const _BN_CLICKED = 0 const _BST_CHECKED = 1 -const _BS_AUTOCHECKBOX = 3 +const _BST_UNCHECKED = 0 +const _BS_CHECKBOX = 2 const _BS_PUSHBUTTON = 0 const _CBS_AUTOHSCROLL = 64 const _CBS_DROPDOWN = 2 |
