I find it difficult to see what color the different dots (.)
are in the
Curses.Blinkenlights, even though my vision is good. The
attached patch
changes it to use an asterisk (*) instead, making it easier
to see.
I've been chaning this locally for some time, finally got
around to
submitting a patch.
-- Attached file included as plaintext by Ecartis --
diff -urx '*.pyc'
offlineimap-4.0.14.qqx1/offlineimap/ui/Curses.py
offlineimap-4.0.14.qqx2/offlineimap/ui/Curses.py
---
offlineimap-4.0.14.qqx1/offlineimap/ui/Curses.py 2006-08-11
18:12:39.000000000 -0500
+++
offlineimap-4.0.14.qqx2/offlineimap/ui/Curses.py 2006-08-19
19:24:47.835833954 -0500
 -212,7
+212,7 
if self.getcolor() == 'black':
self.window.addstr(self.y, self.x, ' ',
self.color)
else:
- self.window.addstr(self.y, self.x, '.',
self.color)
+ self.window.addstr(self.y, self.x, '*',
self.color)
self.c.stdscr.move(self.c.height - 1,
self.c.width - 1)
self.window.refresh()
self.c.locked(lockedstuff)
|