InterviewSolution
Saved Bookmarks
| 1. |
Why Does Fontselection's Set_font_name Return False? |
|
Answer» It needs to be added to a window before the FONT lists are populated. >>> w = gtk.Window() Once added to the window, the RESULT will INDEED be True. It needs to be added to a window before the font lists are populated. >>> w = gtk.Window() Once added to the window, the result will indeed be True. |
|