summaryrefslogtreecommitdiff
path: root/redo/basicctrls.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-15 19:35:49 -0400
committerPietro Gagliardi <[email protected]>2014-08-15 19:35:49 -0400
commit0359d3bf4a05e6456af34d365a2a644b49afd6af (patch)
tree34de559d2fec7d4b1201cc897a0e79501a3abbf4 /redo/basicctrls.go
parentd824e549f19059e5801beb1fa30605ce93e3e15c (diff)
Added Label.isStandalone(), used by Grid. Now for the Grid test...
Diffstat (limited to 'redo/basicctrls.go')
-rw-r--r--redo/basicctrls.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/redo/basicctrls.go b/redo/basicctrls.go
index 3eb7d66..94f5c8d 100644
--- a/redo/basicctrls.go
+++ b/redo/basicctrls.go
@@ -87,6 +87,8 @@ type Label interface {
// Text and SetText get and set the Label's text.
Text() string
SetText(text string)
+
+ isStandalone() bool
}
// NewLabel creates a new Label with the given text.