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:
authorJaime van Kessel <nallath@gmail.com>2022-04-21 14:11:50 +0300
committerJaime van Kessel <nallath@gmail.com>2022-04-21 14:11:50 +0300
commit8383983ff4c23bc552acbc4886a42732f54e84a9 (patch)
treead02e0fdf21088384b19c54493df15db497eafbe /resources/qml
parent950a8cc3e6254140a50254d8d22e66f51992c1b8 (diff)
parent3f9c7c55dcb05ac6bc3a64435c32343c4c8b8043 (diff)
Merge branch 'CURA-9070_dont_lose_focus_search_field' of github.com:Ultimaker/Cura into 5.0
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Settings/SettingView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml
index e8206a28cb..cf24997b12 100644
--- a/resources/qml/Settings/SettingView.qml
+++ b/resources/qml/Settings/SettingView.qml
@@ -195,7 +195,7 @@ Item
onPositionChanged: {
// This removes focus from items when scrolling.
// This fixes comboboxes staying open and scrolling container
- if (!activeFocus) {
+ if (!activeFocus && !filter.activeFocus) {
forceActiveFocus();
}
}