diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-13 13:00:07 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-13 13:00:07 -0400 |
| commit | 6c265dd54daf4567ec9d2cc23834279a4a690393 (patch) | |
| tree | 808565c27565026cf1cce7c3beca3ec2cd61b1c6 /listbox.go | |
| parent | 417bdb89492dc1eb2ca53535fd9891e3cb5bb7d7 (diff) | |
Rolled back the Windows horizontally scrolling Listbox changes because I can't seem to get it to work on Mac OS X (and keeping that code there is inefficient); removed the guarantee of horizontal scrollbars in Listbox and made that a future plan. Both the Windows and the non-working Mac OS X code is in unmigrated/hscrolllistbox.go (and the unmigrated/ folder will be renamed shortly).
Diffstat (limited to 'listbox.go')
| -rw-r--r-- | listbox.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,7 +9,8 @@ import ( // A Listbox is a vertical list of items, of which either at most one or any number of items can be selected at any given time. // On creation, no item is selected. -// Listboxes have both horizontal and vertical scrollbars that are hidden when not needed. +// Listboxes have vertical scrollbars that are hidden when not needed. +// The presence of horizontal scrollbars is currently undefined. type Listbox struct { // TODO Select event |
