From: Rosalind O'Brien Date: 2011-10-17T03:29:02+09:00 Subject: Customizing Listbox text in Shoes I'm writing a shoes app ("Policeman" release) that contains a listbox with items that I want to display in a particular font, because they contain characters that don't display in certain fonts. I also want to adjust the font size because the default size is small and hard to read. Does anyone know how to set the font and font size of listbox items in shoes? Here's basically what I'm trying to do: Shoes.app do stack do list_box :items => ["dʌbəlkwoʊd"], :height => 100, :font => "Lucida Sans" #height and font seem to have no effect end end -- Posted via http://www.ruby-forum.com/.