diff options
author | pravindalve | 2020-06-10 20:46:30 +0530 |
---|---|---|
committer | GitHub | 2020-06-10 20:46:30 +0530 |
commit | 150b7bb892ed82521a5b00372e6a9f3eefce243f (patch) | |
tree | 0b98748057246911595792cde5a71f6ca929ae89 /src/main/python/utils/fileWindow.py | |
parent | fd3ff2c037805a6539a9044bd9d26c3400768be8 (diff) | |
parent | cdd7ca2a45f5e0cfd14e20a3d1fff8a58d8be32d (diff) | |
download | Chemical-PFD-150b7bb892ed82521a5b00372e6a9f3eefce243f.tar.gz Chemical-PFD-150b7bb892ed82521a5b00372e6a9f3eefce243f.tar.bz2 Chemical-PFD-150b7bb892ed82521a5b00372e6a9f3eefce243f.zip |
Merge pull request #13 from Blakeinstein/master
Added newer svg files and landscape feature.
Diffstat (limited to 'src/main/python/utils/fileWindow.py')
-rw-r--r-- | src/main/python/utils/fileWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/python/utils/fileWindow.py b/src/main/python/utils/fileWindow.py index 663a7f3..e0f5652 100644 --- a/src/main/python/utils/fileWindow.py +++ b/src/main/python/utils/fileWindow.py @@ -123,7 +123,7 @@ class fileWindow(QMdiSubWindow): def adjustCanvasDialog(self): #helper context menu function to the context menu dialog box currentTab = self.tabber.currentWidget() - result = dialogs.paperDims(self, currentTab._canvasSize, currentTab._ppi, currentTab.objectName()).exec_() + result = dialogs.paperDims(self, currentTab._canvasSize, currentTab._ppi, currentTab.objectName(), currentTab.landscape).exec_() if result is not None: currentTab.painter.undoStack.push(resizeCommand(result, currentTab, self)) |