diff pyntnclick/gamescreen.py @ 706:909cd470674c pyntnclick

Use unicode arrows on the Up / Down buttons
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 04 Aug 2012 19:32:48 +0200
parents b773e9f42ba3
children 38f537b0ee82
line wrap: on
line diff
--- 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):