From 15eadff66ba35608430a89e62ba359d19ec9255b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 8 Aug 2015 20:21:07 -0400 Subject: [PATCH] Made the button stretchy. This will be important for testing, as by default Auto Layout will want to make the text field stretchy instead. --- redo/osxaltest/main.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redo/osxaltest/main.swift b/redo/osxaltest/main.swift index f3f352bd..dd4b439d 100644 --- a/redo/osxaltest/main.swift +++ b/redo/osxaltest/main.swift @@ -17,7 +17,7 @@ func appLaunched() { mainwin.SetControl(box) box.Add(Entry(), false) - box.Add(Button("Button"), false) + box.Add(Button("Button"), true) mainwin.Show()