diff options
author | makefu <github@syntax-fehler.de> | 2011-07-24 05:02:29 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2011-07-24 05:03:50 +0200 |
commit | 1a0324c732577fa703c006f8188fc424c17f66e0 (patch) | |
tree | 696a71e8b812bf439fe580b8a6c9fc08c1c03ea6 /cholerab/cholerab-live/view.py | |
parent | 2862f1ad4ef0439721779a1a93e29bc5dc1c84de (diff) |
fixed wrong displaying in output window
Diffstat (limited to 'cholerab/cholerab-live/view.py')
-rw-r--r-- | cholerab/cholerab-live/view.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cholerab/cholerab-live/view.py b/cholerab/cholerab-live/view.py index 29608a7d..01b53b8c 100644 --- a/cholerab/cholerab-live/view.py +++ b/cholerab/cholerab-live/view.py @@ -12,7 +12,7 @@ class CursesView(threading.Thread): adds a char at the current cursor position abstraction to the curses win.addch() """ - try: self.win.addch(char,2) + try: self.win.addch(char) except: pass self.cholerab.send_char(self.x,self.y,chr(char)) def stop(self): |