mammar wrote on 2011-01-28 12:33: > Hi Paul > > You can filter the input and block the scrolling. Just add input_filter > in mainloop and control the keys/input the way you want.
yes, that would filter globally. You could also subclass ListBox and override its keypress method to disable scrolling. Or you could make your own ListWalker that only ever has its last item in focus Or you could use a Pile and Filler instead of a ListBox so there's nothing to disable. Ian _______________________________________________ Urwid mailing list [email protected] http://lists.excess.org/mailman/listinfo/urwid
