-
Notifications
You must be signed in to change notification settings - Fork 324
Closed
Labels
FeatureFeature request/implementationFeature request/implementationWindowsWindows supportWindows supportin progressquestion
Description
I'm delighted that urwid works fairly well on the default Ubuntu bash terminal of the windows subsystem for linux. However, there seems to be some sort of charset issue:
import urwid
buttons = [urwid.Button(str(num)) for num in range(5)]
right = urwid.Filler(urwid.Pile([urwid.AttrMap(button, None,'dark') for button in buttons]))
loop = urwid.MainLoop(right, palette=[('light','white','black'),
('dark','black','white')])
loop.run()
Does anybody know what's going on here?
Metadata
Metadata
Assignees
Labels
FeatureFeature request/implementationFeature request/implementationWindowsWindows supportWindows supportin progressquestion