Browse Source

Added min width & height

FIXES #600
Jaime van Kessel 7 years ago
parent
commit
92679818ed
1 changed files with 2 additions and 0 deletions
  1. 2 0
      plugins/USBPrinting/FirmwareUpdateWindow.qml

+ 2 - 0
plugins/USBPrinting/FirmwareUpdateWindow.qml

@@ -12,7 +12,9 @@ UM.Dialog
     id: base;
 
     width: 500 * Screen.devicePixelRatio;
+    minimumWidth: 500 * Screen.devicePixelRatio;
     height: 100 * Screen.devicePixelRatio;
+    minimumHeight: 100 * Screen.devicePixelRatio;
 
     visible: true;
     modality: Qt.ApplicationModal;