From 950db6c2378fe4b8e68c081980192b3e7e876b1f Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Wed, 20 Oct 2010 01:55:38 +0200 Subject: play: changed status indicators --- play | 4 ++-- 1 file 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): -- cgit v1.2.3