summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Ward <ian@excess.org>2014-03-13 22:32:26 -0400
committerIan Ward <ian@excess.org>2014-03-13 22:32:26 -0400
commit65c8722b740970bb0c944dfe4092010ed507aa58 (patch)
tree10f5cb69947277454a7e84a55f356f72615957c9
parent28cbfcc56f8018c35457a19e409fd1cc91221f97 (diff)
downloadurwid-65c8722b740970bb0c944dfe4092010ed507aa58.tar.gz
fix for #60 newline after screen.stop()
-rw-r--r--urwid/raw_display.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urwid/raw_display.py b/urwid/raw_display.py
index f71175e..6a66cdd 100644
--- a/urwid/raw_display.py
+++ b/urwid/raw_display.py
@@ -245,8 +245,8 @@ class Screen(BaseScreen, RealTerminal):
self._term_output_file.write(
self._attrspec_to_escape(AttrSpec('',''))
+ escape.SI
- + escape.SHOW_CURSOR
- + move_cursor + "\n" + escape.SHOW_CURSOR )
+ + move_cursor
+ + escape.SHOW_CURSOR)
self._input_iter = self._fake_input_iter()
if self._old_signal_keys: