diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 23:07:56 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 23:07:56 -0600 |
| commit | 0d1e4a4cffafa976730c263bfc4f787d862f8661 (patch) | |
| tree | e49d13a4d93cc195757893cb7c79ef4c293cb492 /action.go | |
| parent | 53946ed046708c368f4939b7c8a360d538e1fbb9 (diff) | |
add main() as required by golangv0.0.6
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'action.go')
| -rw-r--r-- | action.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -79,9 +79,12 @@ func doAction(a widget.Action) { n.State.Pad = false case widget.Delete: log.Warn("doAction() TODO: Delete()") - // n.Delete() + n.DeleteNode() case widget.Move: log.Warn("doAction() TODO: Move()") + case widget.ToolkitClose: + log.Warn("doAction() toolkit closed. are the channels cleand up?") + return default: log.Log(ERROR, "doAction() Unknown =", a.ActionType, a.WidgetType) } |
