Dominic LoBue wrote: > Ian, > > What is the difference between selectable and ignore_focus? > > Specifically, I'm interested in knowing how these attributes affect > how focus moves down widgets in a listbox, and how it affects > scrolling in the listbox (ie, moving widgets both on and off screen > from beyond the visible boundaries).
ignore_focus only affects caching. If a widget has ignore_focus=True, then it is indicating that it will render the same regardless of the value of the focus parameter. This has no effect on the scrolling and the ListBox widget. There is some explanation of the ListBox scrolling behaviour and selectable and unselectable widgets in the tutorial: http://excess.org/urwid/tutorial.html#lbscr Ian _______________________________________________ Urwid mailing list [email protected] http://lists.excess.org/mailman/listinfo/urwid
