Factorize
  • Overview
  • Repository
  • Tickets
  • Statistics
  • Projects

Repository

Fix screen blanked on firt call to getch()

Parent commits : 1ced66697d2e9194a014167a873720926fa3f092,
Children commits : 3eec036aef4cafdadc703364c1d210ac31abd4bd,

By Laurent Defert on 2011-04-11 12:04:35
Fix screen blanked on firt call to getch()

Browse content
Difference with parent commit 1ced66697d2e9194a014167a873720926fa3f092
Files modified:
gui.py
--- 
+++ 
@@ -305,6 +305,7 @@
 
 def main(stdscr, log, opt):
 	curses.savetty()
+	curses.initscr()
 	try:
 		curses.curs_set(0)
 		curses.start_color()

Generated with KisssPM