summaryrefslogtreecommitdiff
path: root/poezio/size_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/size_manager.py')
-rw-r--r--poezio/size_manager.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/poezio/size_manager.py b/poezio/size_manager.py
index 1a8735ab..a573e176 100644
--- a/poezio/size_manager.py
+++ b/poezio/size_manager.py
@@ -3,6 +3,9 @@ Size Manager:
used to check size boundaries of the whole window and
specific tabs
"""
+
+from poezio import windows
+
THRESHOLD_WIDTH_DEGRADE = 45
THRESHOLD_HEIGHT_DEGRADE = 10
@@ -17,12 +20,12 @@ class SizeManager(object):
@property
def tab_degrade_x(self):
- _, x = self._win_class._tab_win.getmaxyx()
+ _, x = windows.TAB_WIN.getmaxyx()
return x < THRESHOLD_WIDTH_DEGRADE
@property
def tab_degrade_y(self):
- y, x = self._win_class._tab_win.getmaxyx()
+ y, x = windows.TAB_WIN.getmaxyx()
return y < THRESHOLD_HEIGHT_DEGRADE
@property