diff options
| author | Jeff Carr <[email protected]> | 2025-03-03 00:13:13 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-03 00:13:13 -0600 | 
| commit | 642929aca1b61da72c2ff577efaab83fc4b6252b (patch) | |
| tree | f60b968fb81035a7e41f8346f28cf79c772957c5 | |
| parent | a7cc6fa5d3181c5c34f399ffc99bb92784f5113a (diff) | |
| -rw-r--r-- | action.go | 20 | 
1 files changed, 18 insertions, 2 deletions
@@ -43,7 +43,7 @@ type Action struct {  	// Make widgets fill up the space available  	Expand bool -	TablePB []byte // a table protobuf +	TablePB  []byte // a table protobuf  	WidgetPB []byte // a tree of widgets  } @@ -112,6 +112,22 @@ func (s ActionType) String() string {  		return "Move"  	case Dump:  		return "Dump" +	case User: +		return "User" +	case ToolkitLoad: +		return "ToolkitLoad" +	case ToolkitInit: +		return "ToolkitInit" +	case ToolkitClose: +		return "ToolkitClose" +	case ToolkitPanic: +		return "ToolkitPanic" +	case Heartbeat: +		return "Heartbeat" +	case UserQuit: +		return "UserQuit" +	case EnableDebug: +		return "EnableDebug"  	} -	return "ActionType.String() Error" +	return "gui ActionType.String() Error. must be missing something in the code here"  }  | 
