summaryrefslogtreecommitdiff
path: root/action.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-05 15:01:28 -0600
committerJeff Carr <[email protected]>2024-02-05 15:01:28 -0600
commit01c8dd6cf462ea3d33ea6c7eb5b91a6852a33964 (patch)
tree4ac60f2d5d3131cba70594cd7694c880b4d69d39 /action.go
parentec4fb6aecb83df430a378d604a52c562084b2265 (diff)
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'action.go')
-rw-r--r--action.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/action.go b/action.go
index df634e2..4ea2d85 100644
--- a/action.go
+++ b/action.go
@@ -49,9 +49,6 @@ type ActionType int // Add, SetText, Click, Hide, Append, Delete, etc
const (
Add ActionType = iota
Delete
- Get
- Set
- GetText
SetText
AddText
Checked
@@ -74,6 +71,7 @@ const (
ToolkitInit // initializes the toolkit
ToolkitClose // closes the toolkit
ToolkitPanic
+ Heartbeat
CloseWindow
UserQuit // the user closed the GUI
EnableDebug // open the debugging window
@@ -85,12 +83,6 @@ func (s ActionType) String() string {
return "Add"
case Delete:
return "Delete"
- case Get:
- return "Get"
- case Set:
- return "Set"
- case GetText:
- return "GetText"
case SetText:
return "SetText"
case AddText: