diff options
| author | Jeff Carr <[email protected]> | 2025-03-25 07:28:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-25 13:17:00 -0500 |
| commit | d141b4d308f71418e8d43a58c2e04f9560db3092 (patch) | |
| tree | 57dc156187f844d078c10b98bf30e1ca3a477d7e /addNode.go | |
| parent | 3420aee2911af5ecfc8ee77bfff2c890b78d86ab (diff) | |
save the toolkit config options
Diffstat (limited to 'addNode.go')
| -rw-r--r-- | addNode.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,9 +38,9 @@ func addNode(a *widget.Action) *Node { } if treeRoot.FindWidgetId(a.WidgetId) != nil { - log.Log(TREEWARN, "AddNode() WidgetId already exists", a.WidgetId) - log.Log(TREEWARN, "probably this is a Show() / Hide() issue") - log.Log(TREEWARN, "TODO: figure out what to do here") + // ignore these errors for now + log.Log(TREE, "AddNode() WidgetId already exists", a.WidgetId) + log.Log(TREE, "TODO: figure out what to do here probably this is a Show() / Hide() issue") return treeRoot.FindWidgetId(a.WidgetId) } |
