From f0c3c3e59fe910d16608ccdb6ae58b368e664552 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 6 Mar 2005 11:55:07 +0000 Subject: [PATCH] Bug fix Organization: Straylight/Edgeware From: espen --- hello-world.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world.lisp b/hello-world.lisp index f6881bf..ab99220 100644 --- a/hello-world.lisp +++ b/hello-world.lisp @@ -6,7 +6,7 @@ (make-instance 'window ; :type :toplevel :title "Test" :border-width 5 - :visible :show-children t + :visible t :show-children t :child (make-instance 'button :label "Hello World!" :signal (list 'clicked -- [mdw]