summaryrefslogtreecommitdiff
path: root/toolkit/widget.go
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/widget.go')
-rw-r--r--toolkit/widget.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/toolkit/widget.go b/toolkit/widget.go
index 655a0db..02dbe3f 100644
--- a/toolkit/widget.go
+++ b/toolkit/widget.go
@@ -69,6 +69,7 @@ const (
Textbox // is this a Label with edit=true
Slider // like a progress bar
Spinner // like setting the oven temperature
+ Separator // TODO
Image // TODO
Area // TODO
Form // TODO
@@ -138,6 +139,8 @@ func (s WidgetType) String() string {
return "Slider"
case Spinner:
return "Spinner"
+ case Separator:
+ return "Separator"
case Image:
return "Image"
case Area: