diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-12 21:49:41 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-12 21:49:41 -0400 |
| commit | 274fa0c2928e3d1573a83d2f68048963df5e16e4 (patch) | |
| tree | 43d1062a682bffcbdf54a7910132ef740fffa0c4 /sysdata_windows.go | |
| parent | b9e5ef8e4b042a3c734fbadac1d45e8302e6296a (diff) | |
Fixed Comboboxes on Mac OS X having an initial selection. This also lays the groundwork for adding Combobox/Listbox.Select() as a public function...
Diffstat (limited to 'sysdata_windows.go')
| -rw-r--r-- | sysdata_windows.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdata_windows.go b/sysdata_windows.go index d7beb8f..ba3520e 100644 --- a/sysdata_windows.go +++ b/sysdata_windows.go @@ -641,3 +641,7 @@ func (s *sysData) setAreaSize(width int, height int) { } <-ret } + +func (s *sysData) selectIndex(index int) { + // TODO not yet implemented on Windows (added for Mac only right now) +} |
