summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-09-20 21:21:26 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-09-20 21:21:26 +0200
commit6debaa6c3f90275e1ebb641360da6fe367126ec5 (patch)
treea1008e0afdc290fe60a287a8da4bac089a0078f7 /src/tabs.py
parent324fcf817c3931ab0dc3c421b34e4d5ecfcfb3c6 (diff)
downloadpoezio-6debaa6c3f90275e1ebb641360da6fe367126ec5.tar.gz
poezio-6debaa6c3f90275e1ebb641360da6fe367126ec5.tar.bz2
poezio-6debaa6c3f90275e1ebb641360da6fe367126ec5.tar.xz
poezio-6debaa6c3f90275e1ebb641360da6fe367126ec5.zip
Do not limit the size of the windows, fixes #2246
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 3a93f541..69a6ac96 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):
"""