diff options
| author | Jeff Carr <[email protected]> | 2024-01-29 23:01:39 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-29 23:01:39 -0600 |
| commit | 5ef1bd10213a8e6a8b96ed1ca67a91ceb7f026fd (patch) | |
| tree | 6659d0d1ce6f628577267bc0b03e0bdf3976bd16 /click.go | |
| parent | d97ce2aecc08cdaae49b5885453deee9260aaf06 (diff) | |
window widgets are being displayed
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'click.go')
| -rw-r--r-- | click.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -95,7 +95,8 @@ func (w *guiWidget) doWidgetClick() { case widget.Root: // THIS IS THE BEGINING OF THE LAYOUT log.Log(NOW, "doWidgetClick()", w.String()) - redoWindows(0, 0) + wRoot := me.treeRoot.TK.(*guiWidget) + wRoot.redoWindows(0, 0) case widget.Flag: log.Log(NOW, "doWidgetClick() FLAG widget name =", w.String()) log.Log(NOW, "doWidgetClick() if this is the dropdown menu, handle it here?") |
