summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 26f8bd0e..5c141f51 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -13,9 +13,6 @@ Each Tab object has different refresh() and resize() methods, defining how its
Windows are displayed, resized, etc
"""
-MIN_WIDTH = 50
-MIN_HEIGHT = 22
-
import logging
log = logging.getLogger(__name__)
@@ -89,10 +86,7 @@ class Tab(object):
@staticmethod
def resize(scr):
Tab.size = (Tab.height, Tab.width) = scr.getmaxyx()
- if Tab.height < MIN_HEIGHT or Tab.width < MIN_WIDTH:
- Tab.visible = False
- else:
- Tab.visible = True
+ Tab.visible = True
def complete_commands(self, the_input):
"""