diff options
| -rw-r--r-- | action.go | 2 | ||||
| -rw-r--r-- | widget.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ type Action struct { type ActionType int // Add, SetText, Click, Hide, Append, Delete, etc const ( - Add ActionType = iota + Add ActionType = iota + 1 Delete SetText AddText @@ -16,7 +16,7 @@ package widget type WidgetType int // Button, Menu, Checkbox, etc. const ( - Unknown WidgetType = iota + Unknown WidgetType = iota + 1 Root // the master 'root' node of the binary tree Flag // used to send configuration values to plugins Window // in certain gui's (ncurses), these are tabs |
