Skip to content

Commit

Permalink
Fix multiline prop
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Dec 12, 2024
1 parent bec7612 commit 7b38d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nomadnet/ui/textui/MicronParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def parse_line(line, state, url_delegate):
fn = o["name"]
fs = o["style"]
fmask = "*" if o["masked"] else None
f = urwid.Edit(caption="", edit_text=fd, align=state["align"], multiline=False, mask=fmask)
f = urwid.Edit(caption="", edit_text=fd, align=state["align"], multiline=True, mask=fmask)
f.field_name = fn
fa = urwid.AttrMap(f, fs)
widgets.append((fw, fa))
Expand Down

0 comments on commit 7b38d4f

Please sign in to comment.