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

View file

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