12 lines
186 B
Python
12 lines
186 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
import urwid
|
||
|
|
||
|
|
||
|
class SelectableText(urwid.Text):
|
||
|
def selectable(self):
|
||
|
return True
|
||
|
|
||
|
def keypress(self, size, key):
|
||
|
return key
|