From b3c2c7615713181db8faf7e098293a796509d47f Mon Sep 17 00:00:00 2001 From: Andrey Pohilko Date: Fri, 16 Nov 2012 16:05:21 +0400 Subject: [PATCH] Larger default console screen --- Tank/Plugins/ConsoleScreen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tank/Plugins/ConsoleScreen.py b/Tank/Plugins/ConsoleScreen.py index 0b2eed1..0e1b1a9 100644 --- a/Tank/Plugins/ConsoleScreen.py +++ b/Tank/Plugins/ConsoleScreen.py @@ -15,7 +15,7 @@ def get_terminal_size(): ''' Gets width and height of terminal viewport ''' - default_size = (40, 80) + default_size = (60, 120) env = os.environ def ioctl_gwinsz(file_d): ''' @@ -53,8 +53,8 @@ class Screen(object): self.info_panel_percent = int(info_panel_width) self.info_widgets = {} self.markup = markup_provider - self.term_height = 25 - self.term_width = 80 + self.term_height = 60 + self.term_width = 120 self.right_panel_width = 10 self.left_panel_width = self.term_width - self.right_panel_width - len(self.RIGHT_PANEL_SEPARATOR)