add missing widget Actions
This commit is contained in:
parent
a7cc6fa5d3
commit
642929aca1
18
action.go
18
action.go
|
@ -112,6 +112,22 @@ func (s ActionType) String() string {
|
||||||
return "Move"
|
return "Move"
|
||||||
case Dump:
|
case Dump:
|
||||||
return "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"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue