Merge pull request #20455 from Ultimaker/CURA-12486_use-single-instance-needs-restart-desc

Indicates that changing option requires a restart
This commit is contained in:
Mariska 2025-04-10 12:51:22 +02:00 committed by GitHub
commit 5113dca671
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -360,17 +360,6 @@ UM.PreferencesPage
} }
} }
UM.Label
{
id: languageCaption
//: Language change warning
text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.")
wrapMode: Text.WordWrap
font.italic: true
}
Item Item
{ {
//: Spacer //: Spacer
@ -705,7 +694,7 @@ UM.PreferencesPage
UM.CheckBox UM.CheckBox
{ {
id: singleInstanceCheckbox id: singleInstanceCheckbox
text: catalog.i18nc("@option:check","Use a single instance of Cura") text: catalog.i18nc("@option:check","Use a single instance of Cura *")
checked: boolCheck(UM.Preferences.getValue("cura/single_instance")) checked: boolCheck(UM.Preferences.getValue("cura/single_instance"))
onCheckedChanged: UM.Preferences.setValue("cura/single_instance", checked) onCheckedChanged: UM.Preferences.setValue("cura/single_instance", checked)
@ -1101,8 +1090,6 @@ UM.PreferencesPage
} }
} }
/* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it.
Item Item
{ {
//: Spacer //: Spacer
@ -1110,6 +1097,18 @@ UM.PreferencesPage
width: UM.Theme.getSize("default_margin").height width: UM.Theme.getSize("default_margin").height
} }
UM.Label
{
id: languageCaption
//: Language change warning
text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.")
wrapMode: Text.WordWrap
font.italic: true
}
/* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it.
Label Label
{ {
font.bold: true font.bold: true