From 92679818edde16366eec5dcb7836cf256d7da0dc Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 27 Jul 2017 12:55:12 +0200 Subject: [PATCH] Added min width & height FIXES #600 --- plugins/USBPrinting/FirmwareUpdateWindow.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/USBPrinting/FirmwareUpdateWindow.qml b/plugins/USBPrinting/FirmwareUpdateWindow.qml index b42cff114f..f55aa4c56e 100644 --- a/plugins/USBPrinting/FirmwareUpdateWindow.qml +++ b/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;