Lowercase the mode names to match the mappings.
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 30 Jun 2011 18:36:50 -0400 |
parents |
c0485a021571
|
children |
61c6ca7b2d8a
|
branches/tags |
(none) |
files |
autoload/threesomelib/modes.py |
Changes
--- a/autoload/threesomelib/modes.py Thu Jun 30 18:33:12 2011 -0400
+++ b/autoload/threesomelib/modes.py Thu Jun 30 18:36:50 2011 -0400
@@ -131,9 +131,9 @@
modes = pad([
r'Threesome Modes',
- r'x[G]rid y[C]ompare'.replace('x', self._id == 'grid' and '*' or ' ')
+ r'x[g]rid y[c]ompare'.replace('x', self._id == 'grid' and '*' or ' ')
.replace('y', self._id == 'comp' and '*' or ' '),
- r'x[L]oupe y[P]ath'.replace('x', self._id == 'loup' and '*' or ' ')
+ r'x[l]oupe y[p]ath'.replace('x', self._id == 'loup' and '*' or ' ')
.replace('y', self._id == 'path' and '*' or ' '),
])
diagram = pad(self.hud_diagram())