mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-28 11:50:43 -07: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue