changeset 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 29ff33d5a1a4
children 6b8fa2248ee1
files pyntnclick/gamescreen.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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):