# HG changeset patch # User Steve Losh # Date 1309473410 14400 # Node ID 8cfa904908841dd19ffc0e1861dca522303e54b1 # Parent c0485a021571f5f210d881eaa48fd6213da5b3e3 Lowercase the mode names to match the mappings. diff -r c0485a021571 -r 8cfa90490884 autoload/threesomelib/modes.py --- 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())