From 9ffd7ecdb3b7238d56b0bcabbcf70076784216e8 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 1 Apr 2021 13:01:14 +0200 Subject: [PATCH] Make Wizard Dialogs non-resizeable. 5-min fix. --- resources/qml/WelcomePages/WizardDialog.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/qml/WelcomePages/WizardDialog.qml b/resources/qml/WelcomePages/WizardDialog.qml index cfa03352b0..8629f47115 100644 --- a/resources/qml/WelcomePages/WizardDialog.qml +++ b/resources/qml/WelcomePages/WizardDialog.qml @@ -24,6 +24,8 @@ Window minimumWidth: UM.Theme.getSize("modal_window_minimum").width minimumHeight: UM.Theme.getSize("modal_window_minimum").height + maximumWidth: minimumWidth + maximumHeight: minimumHeight color: UM.Theme.getColor("main_background")