9 lines
146 B
Python
9 lines
146 B
Python
import urwid
|
|
|
|
class SelectableText(urwid.Text):
|
|
def selectable(self):
|
|
return 1
|
|
|
|
def keypress(self, size, key):
|
|
return key
|