# HG changeset patch # User Neil Muller # Date 1344101568 -7200 # Node ID 909cd470674ced1865820690cd42c08d0e1d4e85 # Parent 29ff33d5a1a4e892c6946361610afb9d1532b152 Use unicode arrows on the Up / Down buttons diff -r 29ff33d5a1a4 -r 909cd470674c pyntnclick/gamescreen.py --- a/pyntnclick/gamescreen.py Sat Aug 04 19:32:26 2012 +0200 +++ b/pyntnclick/gamescreen.py Sat Aug 04 19:32:48 2012 +0200 @@ -63,11 +63,11 @@ class UpButton(UpDownButton): - TEXT = 'UP' + TEXT = u'\N{UPWARDS ARROW}UP' class DownButton(UpDownButton): - TEXT = 'DN' + TEXT = u'\N{DOWNWARDS ARROW}DN' class InventoryView(Container):