mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Only list configurations if we're still connected
Otherwise there are no available configurations, so no syncing.
This commit is contained in:
parent
30b75c7988
commit
3eb50cf37e
1 changed files with 4 additions and 1 deletions
|
@ -21,7 +21,10 @@ Column
|
||||||
{
|
{
|
||||||
// FIXME For now the model should be removed and then created again, otherwise changes in the printer don't automatically update the UI
|
// FIXME For now the model should be removed and then created again, otherwise changes in the printer don't automatically update the UI
|
||||||
configurationList.model = []
|
configurationList.model = []
|
||||||
configurationList.model = outputDevice.uniqueConfigurations
|
if(outputDevice)
|
||||||
|
{
|
||||||
|
configurationList.model = outputDevice.uniqueConfigurations
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Label
|
Label
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue