mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 21:58:01 -06:00
Fix code-styling
This commit is contained in:
parent
9fa8498162
commit
f91b6faecc
3 changed files with 7 additions and 3 deletions
|
@ -1518,7 +1518,9 @@ class CuraApplication(QtApplication):
|
|||
|
||||
@pyqtSlot("QSize")
|
||||
def setMinimumWindowSize(self, size):
|
||||
self.getMainWindow().setMinimumSize(size)
|
||||
main_window = self.getMainWindow()
|
||||
if main_window:
|
||||
main_window.setMinimumSize(size)
|
||||
|
||||
def getBuildVolume(self):
|
||||
return self._volume
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue