The terminal fallback mode no longer considers terminal height.

This commit is contained in:
Adam Waldenberg 2013-05-06 11:17:09 +02:00
parent cf8922efe6
commit 34f490af57
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def get_size():
elif current_os == 'Linux' or current_os == 'Darwin' or current_os.startswith('CYGWIN'):
(width, height) = __get_size_linux__()
if width > 0 and height > 0:
if width > 0:
return (width, height)
return (80, 25)