Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Choice faces

From: reboler:programmer at: 16-Apr-2002 14:57

I suspect your problem is the size of the face that the 'choice is shown in. It is not tall enough (y-value of XxY) to display all of your choices. Try the following ... view layout [size 150x180 choice "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"] view layout [size 150x250 choice "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"] Make the choice parent-face taller.