diff options
Diffstat (limited to 'basicCombobox.go')
| -rw-r--r-- | basicCombobox.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/basicCombobox.go b/basicCombobox.go index 3b318d9..8377f3f 100644 --- a/basicCombobox.go +++ b/basicCombobox.go @@ -48,6 +48,16 @@ func (d *BasicCombobox) Ready() bool { return d.ready } +func (n *BasicCombobox) Hide() { + n.l.Hide() + n.d.Hide() +} + +func (n *BasicCombobox) Show() { + n.l.Show() + n.d.Show() +} + func (d *BasicCombobox) Enable() { if d == nil { return |
