Skip to content

Commit

Permalink
notif: color display-always messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasTomecek committed Nov 11, 2015
1 parent b1cad5e commit 3912c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sen/tui/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_operation_notify_widget(operation, notif_level="info", display_always=Tr
if took < 1000:
text_list.append((attr, " ms"))
elif display_always:
text_list.append(operation.pretty_message)
text_list.append((attr, operation.pretty_message))
else:
return
return urwid.AttrMap(urwid.Text(text_list), attr)
Expand Down

0 comments on commit 3912c9c

Please sign in to comment.