Skip to content

Commit 3912c9c

Browse files
committed
notif: color display-always messages
1 parent b1cad5e commit 3912c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sen/tui/widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_operation_notify_widget(operation, notif_level="info", display_always=Tr
3737
if took < 1000:
3838
text_list.append((attr, " ms"))
3939
elif display_always:
40-
text_list.append(operation.pretty_message)
40+
text_list.append((attr, operation.pretty_message))
4141
else:
4242
return
4343
return urwid.AttrMap(urwid.Text(text_list), attr)

0 commit comments

Comments
 (0)