summaryrefslogtreecommitdiff
path: root/stack.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-03 22:54:28 -0400
committerPietro Gagliardi <[email protected]>2014-06-03 22:54:28 -0400
commit59870e80f005cbd8f883c24200f81bde2fd63a7e (patch)
treeadefc2241f15aed9ad9ff5fc3678857973dc53a7 /stack.go
parentd69c90401fc3cf15d2d0e0f177be0bdd2299daf8 (diff)
Quick changes: turned "Window has been opened" to "Window has been created" since I'm going to separate creating and opening (Open() will call Create()).
Diffstat (limited to 'stack.go')
-rw-r--r--stack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.go b/stack.go
index 4bdede6..fc9d600 100644
--- a/stack.go
+++ b/stack.go
@@ -48,7 +48,7 @@ func NewVerticalStack(controls ...Control) *Stack {
return newStack(vertical, controls...)
}
-// SetStretchy marks a control in a Stack as stretchy. This cannot be called once the Window containing the Stack has been opened.
+// SetStretchy marks a control in a Stack as stretchy. This cannot be called once the Window containing the Stack has been created.
// It panics if index is out of range.
func (s *Stack) SetStretchy(index int) {
s.lock.Lock()