Complete.Org: Mailing Lists: Archives: offlineimap: August 2006:
[PATCH] Curses.Blinkenlights status character
Home

[PATCH] Curses.Blinkenlights status character

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: offlineimap@xxxxxxxxxxxx
Subject: [PATCH] Curses.Blinkenlights status character
From: Aaron Schrab <aaron@xxxxxxxxxx>
Date: Sat, 19 Aug 2006 19:35:38 -0500

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)




[Prev in Thread] Current Thread [Next in Thread]