summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-10-20 01:55:38 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-10-20 01:55:50 +0200
commit950db6c2378fe4b8e68c081980192b3e7e876b1f (patch)
tree6f2e8693d258037eef9c966a8369b2e5df23f6c8
parentc54f77db3d486ed893aa5927f63536f9aaee8c0d (diff)
downloadplay-950db6c2378fe4b8e68c081980192b3e7e876b1f.tar.xz
play: changed status indicators
-rw-r--r--play4
1 files changed, 2 insertions, 2 deletions
diff --git a/play b/play
index 69316f9..e522b08 100644
--- a/play
+++ b/play
@@ -199,7 +199,7 @@ class ProgressWindow(Window):
self.move(0, x)
# Color of the progress indicator
self.attron(curses.color_pair(1))
- self.insstr('|')
+ self.insstr('O')
self.attroff(curses.color_pair(1))
self.touchwin()
self.refresh()
@@ -565,7 +565,7 @@ class ListEntry:
return self.tagged == 1
def __str__(self):
- mark = self.is_tagged() and "#" or " "
+ mark = self.is_tagged() and "*" or " "
return "%s %s%s" % (mark, self.vp(), self.slash)
def vp(self):