Don't create DiscardOrKeepProfileChangesDialog on start-up

Just whenever we need it, please.
This removes a warning from the start-up sequence, but the warning is still there when you open the dialogue. It's complaining that a model has size -13 and another has size -14, but I don't know which model that is. The UserChangesModel seems to be fine at a size of 1 or so.

Contributes to issue CURA-7501.
This commit is contained in:
Ghostkeeper 2020-10-30 16:54:57 +01:00
parent cfccf94914
commit a2d2043b3c
No known key found for this signature in database
GPG Key ID: D2A8871EE34EC59A
2 changed files with 10 additions and 5 deletions

View File

@ -838,17 +838,22 @@ UM.MainWindow
} }
} }
DiscardOrKeepProfileChangesDialog Component
{ {
id: discardOrKeepProfileChangesDialog id: discardOrKeepProfileChangesDialogComponent
DiscardOrKeepProfileChangesDialog { }
}
Loader
{
id: discardOrKeepProfileChangesDialogLoader
} }
Connections Connections
{ {
target: CuraApplication target: CuraApplication
onShowDiscardOrKeepProfileChanges: onShowDiscardOrKeepProfileChanges:
{ {
discardOrKeepProfileChangesDialog.show() discardOrKeepProfileChangesDialogLoader.sourceComponent = discardOrKeepProfileChangesDialogComponent
discardOrKeepProfileChangesDialogLoader.item.show()
} }
} }

View File

@ -132,7 +132,7 @@ UM.Dialog
font.bold: true font.bold: true
} }
model: base.changesModel model: userChangesModel
} }
} }