summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/python/utils/fileWindow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/python/utils/fileWindow.py b/src/main/python/utils/fileWindow.py
index 929bde0..99f1f70 100644
--- a/src/main/python/utils/fileWindow.py
+++ b/src/main/python/utils/fileWindow.py
@@ -53,10 +53,10 @@ class fileWindow(QMdiSubWindow):
parentRect = parent.parentWidget().rect() if parent else self.parentWidget().parentWidget().rect()
current = self.tabber.currentWidget()
width, height = current.dimensions
- width = min(parentRect.width(), width + 50)
- height = min(parentRect.height(), height + 100)
+ width = min(parentRect.width(), width + 100)
+ height = min(parentRect.height(), height + 200)
self.setFixedSize(width, height)
- # self.tabber.resize(width, height)
+ self.tabber.resize(width, height)
self.tabber.currentWidget().adjustView()
def contextMenu(self, point):