From 4ffb16905e41afb7fe1eee72ed15177d7d79cea3 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sat, 15 Jan 2011 05:41:38 -0600 Subject: [PATCH] upped the min sizes for the same score controls --- collects/games/same/same.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/games/same/same.rkt b/collects/games/same/same.rkt index f620fd9e66..c1fabfbacc 100644 --- a/collects/games/same/same.rkt +++ b/collects/games/same/same.rkt @@ -309,11 +309,11 @@ (define hp (new horizontal-panel% [parent panel] [stretchable-height #f])) (new message% [label "Total Score: "] [parent hp]) (define score-message (new message% - [label "1000 + 1000 = 2000"] ;; get a reasonable min size + [label "10000 + 10000 = 20000"] ;; get a reasonable min size [parent hp] [stretchable-width #t])) (new message% [label "This Score: "] [parent hp]) (define this-score-message (new message% - [label "100"] ;; get a reasonable min size + [label "10000"] ;; get a reasonable min size [parent hp] [stretchable-width #t])) (define button (make-object button% "New Game" hp (lambda x (new-game-callback #t))))