mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 14:29:03 +08:00
Remove QML warning at startup
Using undefined works properly, but generates a warning. The other solution is to set the maximum size to something knowingly big. CURA-10896
This commit is contained in:
parent
cb3d22a2c0
commit
15243fd6f9
@ -826,8 +826,8 @@ UM.MainWindow
|
||||
{
|
||||
id: addMachineDialog
|
||||
title: catalog.i18nc("@title:window", "Add Printer")
|
||||
maximumWidth: undefined
|
||||
maximumHeight: undefined
|
||||
maximumWidth: Screen.width * 2
|
||||
maximumHeight: Screen.height * 2
|
||||
model: CuraApplication.getAddPrinterPagesModel()
|
||||
progressBarVisible: false
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user