kopia lustrzana https://github.com/ihabunek/toot
Indicate if status has been favorited in left pane of curses ui
Showing a yellow star in the right corner of second line.pull/93/head
rodzic
41d96249ba
commit
3d0c7be1e0
|
@ -134,6 +134,9 @@ class StatusListWindow:
|
||||||
self.pad.addstr(offset + 1, 1, " " + date.ljust(12), color)
|
self.pad.addstr(offset + 1, 1, " " + date.ljust(12), color)
|
||||||
self.pad.addstr(offset + 2, 1, " " + time.ljust(12), color)
|
self.pad.addstr(offset + 2, 1, " " + time.ljust(12), color)
|
||||||
|
|
||||||
|
if status['favourited']:
|
||||||
|
self.pad.addstr(offset + 2, width - 3, '⭐', Color.YELLOW)
|
||||||
|
|
||||||
if draw_divider:
|
if draw_divider:
|
||||||
draw_horizontal_divider(self.pad, offset + 3)
|
draw_horizontal_divider(self.pad, offset + 3)
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue