summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-04-10 03:52:46 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-04-10 03:52:46 +0200
commita6c56682b74acb7ef568913bbc964b4f17cf3202 (patch)
treea69f53ea655b34831bbff0572dcc487429057f9e /src/core.py
parent35b6e146cb6a0b313d6297f0d91654aa21f58c1b (diff)
downloadpoezio-a6c56682b74acb7ef568913bbc964b4f17cf3202.tar.gz
poezio-a6c56682b74acb7ef568913bbc964b4f17cf3202.tar.bz2
poezio-a6c56682b74acb7ef568913bbc964b4f17cf3202.tar.xz
poezio-a6c56682b74acb7ef568913bbc964b4f17cf3202.zip
Implement paused chate state. fixed #2124
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 8629ecc8..76f5026e 100644
--- a/src/core.py
+++ b/src/core.py
@@ -629,7 +629,6 @@ class Core(object):
"""
res = read_char(self.stdscr)
while res is None:
- log.debug('checking events')
self.check_timed_events()
res = read_char(self.stdscr)
return res
@@ -707,6 +706,7 @@ class Core(object):
if not options.debug:
curses.raw()
theme.init_colors()
+ stdscr.idlok(True)
stdscr.keypad(True)
curses.ungetch(" ") # H4X: without this, the screen is
stdscr.getkey() # erased on the first "getkey()"