mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Add (non-functional) items for changed settings (user-changes) and current profile settings
This commit is contained in:
parent
3f11b8a756
commit
503c612509
1 changed files with 21 additions and 3 deletions
|
@ -18,6 +18,15 @@ Menu
|
|||
signal showAllSettings()
|
||||
signal showSettingVisibilityProfile()
|
||||
|
||||
MenuItem
|
||||
{
|
||||
text: catalog.i18nc("@action:inmenu", "Search Results")
|
||||
checkable: true
|
||||
visible: showingSearchResults
|
||||
checked: showingSearchResults
|
||||
exclusiveGroup: group
|
||||
}
|
||||
MenuSeparator { visible: showingSearchResults }
|
||||
MenuItem
|
||||
{
|
||||
text: catalog.i18nc("@action:inmenu", "Normal Set")
|
||||
|
@ -29,13 +38,22 @@ Menu
|
|||
MenuSeparator {}
|
||||
MenuItem
|
||||
{
|
||||
text: catalog.i18nc("@action:inmenu", "Search Results")
|
||||
text: catalog.i18nc("@action:inmenu", "Changed settings")
|
||||
checkable: true
|
||||
visible: showingSearchResults
|
||||
checked: showingSearchResults
|
||||
checked: showingAllSettings
|
||||
exclusiveGroup: group
|
||||
onTriggered: showAllSettings()
|
||||
}
|
||||
MenuItem
|
||||
{
|
||||
text: catalog.i18nc("@action:inmenu", "Settings in profile")
|
||||
checkable: true
|
||||
checked: showingAllSettings
|
||||
exclusiveGroup: group
|
||||
onTriggered: showAllSettings()
|
||||
}
|
||||
MenuSeparator {}
|
||||
MenuItem
|
||||
{
|
||||
text: catalog.i18nc("@action:inmenu", "All Settings")
|
||||
checkable: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue