mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
update the setting table while loading ucp the seond time
CURA-11403
This commit is contained in:
parent
72f6540627
commit
f19320cad8
3 changed files with 16 additions and 2 deletions
|
@ -216,7 +216,6 @@ UM.Dialog
|
|||
buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings")
|
||||
onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible
|
||||
}
|
||||
|
||||
Cura.TableView
|
||||
{
|
||||
id: tableViewSpecificSettings
|
||||
|
@ -239,6 +238,13 @@ UM.Dialog
|
|||
rows: manager.exportedSettingModel.items
|
||||
}
|
||||
}
|
||||
|
||||
property var modelRows: manager.exportedSettingModel.items
|
||||
onModelRowsChanged:
|
||||
{
|
||||
tableModel.clear()
|
||||
tableModel.rows = modelRows
|
||||
}
|
||||
}
|
||||
|
||||
comboboxVisible: manager.qualityChangesConflict
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue