mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
The terminal fallback mode no longer considers terminal height.
This commit is contained in:
parent
cf8922efe6
commit
34f490af57
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue