Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Edwards <s.edwards@ultimaker.com>2016-12-08 18:54:34 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2016-12-08 18:55:22 +0300
commit882f4c1aef5fb28dee4e655e37ea893640c34bd5 (patch)
tree2555c11dd8a5905c6a0662727ad3630dc2590e0a /resources
parent75fc2505e3b944a73cffa616757d495cff6ad936 (diff)
Make the other parts of the Cura UI which have a filter, also search on i18n labels.
CURA-2653 Searching in English while other language set
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Preferences/SettingVisibilityPage.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml
index 282f366994..4302fb42a8 100644
--- a/resources/qml/Preferences/SettingVisibilityPage.qml
+++ b/resources/qml/Preferences/SettingVisibilityPage.qml
@@ -90,7 +90,7 @@ UM.PreferencesPage
placeholderText: catalog.i18nc("@label:textbox", "Filter...")
- onTextChanged: definitionsModel.filter = {"label": "*" + text}
+ onTextChanged: definitionsModel.filter = {"i18n_label": "*" + text}
}
ScrollView