summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-13 14:56:58 -0400
committerPietro Gagliardi <[email protected]>2014-08-13 14:56:58 -0400
commit952305be82a8262887e417f407ba0329f2edecbe (patch)
tree277946a7b2d4e7aa3df331af2b01ad47022cac45
parent944da72875f2abee1142acd14e3bd28c071e0aa3 (diff)
Rechecked Stack/Grid code; non-standalone Label behavior TODO removed.
-rw-r--r--redo/basicctrls.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/basicctrls.go b/redo/basicctrls.go
index 35abb20..5c5364d 100644
--- a/redo/basicctrls.go
+++ b/redo/basicctrls.go
@@ -79,7 +79,7 @@ func NewTab() Tab {
// Label is a Control that shows a static line of text.
// Label shows one line of text; any text that does not fit is truncated.
// A Label can either have smart vertical alignment relative to the control to its right or just be vertically aligned to the top (standalone).
-// The effect of placing a non-standalone Label in any context other than to the immediate left of a Control (TODO currently basic Control only? recheck Stack/Grid code) is undefined.
+// The effect of placing a non-standalone Label in any context other than to the immediate left of a Control is undefined.
// Both types of labels currently are left-aligned (TODO).
type Label interface {
Control