diff options
Diffstat (limited to 'widget.go')
| -rw-r--r-- | widget.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -104,7 +104,7 @@ func (tk *guiWidget) Visible() bool { func (w *guiWidget) Show() { // always should the dropdown widget if w == me.dropdownV { - me.dropdownV.recreateView() + me.dropdownV.drawView() return } @@ -116,13 +116,13 @@ func (w *guiWidget) Show() { // if this isn't in the binary tree // it's some internal widget so always display those if w.node == nil { - w.recreateView() + w.drawView() return } // always show window titles if w.node.WidgetType != widget.Window { - w.recreateView() + w.drawView() return } @@ -143,7 +143,7 @@ func (w *guiWidget) Show() { } // okay, if you made it this far, then display the widget - w.recreateView() + w.drawView() } func (tk *guiWidget) Hide() { |
