summaryrefslogtreecommitdiff
path: root/combobox.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-05 13:40:47 -0400
committerPietro Gagliardi <[email protected]>2014-06-05 13:40:47 -0400
commit5a9bd4b4b5eb40fe1eeb618271841110d87b7dd7 (patch)
tree70ab0e901ee80c63a37bb07a56bf096507762cf8 /combobox.go
parent86cf1fbcbafde190905b48588192832448e147da (diff)
Fixed the GTK+ Combobox sizing issues for real this time.
Diffstat (limited to 'combobox.go')
-rw-r--r--combobox.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/combobox.go b/combobox.go
index 86e38e9..02040cb 100644
--- a/combobox.go
+++ b/combobox.go
@@ -7,7 +7,7 @@ import (
"sync"
)
-// A Combobox is a drop-down list of items, of which at most one can be selected at any given time. You may optionally make the combobox editable to allow custom items. Initially, no item will be selected (and no text entered in an editable Combobox's entry field).
+// A Combobox is a drop-down list of items, of which at most one can be selected at any given time. You may optionally make the combobox editable to allow custom items. Initially, no item will be selected (and no text entered in an editable Combobox's entry field). What happens to the text shown in a Combobox if its width is too small is implementation-defined.
type Combobox struct {
lock sync.Mutex
created bool