tuikit/scrollbar.py
changeset 24 b248ef500557
parent 18 e6c3a5ee91aa
child 32 088b92ffb119
--- a/tuikit/scrollbar.py	Sun Oct 09 13:06:58 2011 +0200
+++ b/tuikit/scrollbar.py	Sun Oct 09 19:30:25 2011 +0200
@@ -32,11 +32,11 @@
 
 
     def on_draw(self, screen, x, y):
-        screen.putch(x, y, screen.UP_ARROW)
+        screen.putch(x, y, screen.unigraph.UP_ARROW)
         for i in range(y + 1, y + self.height - 1):
-            screen.putch(x, i, screen.LIGHT_SHADE)
-        screen.putch(x, y + 1 + self.thumbpos, screen.BLOCK)
-        screen.putch(x, y + self.height - 1, screen.DOWN_ARROW)
+            screen.putch(x, i, screen.unigraph.LIGHT_SHADE)
+        screen.putch(x, y + 1 + self.thumbpos, screen.unigraph.BLOCK)
+        screen.putch(x, y + self.height - 1, screen.unigraph.DOWN_ARROW)
 
 
     def on_mousedown(self, ev):