Browse Source

Merge branch 'CURA-9070_dont_lose_focus_search_field' of github.com:Ultimaker/Cura into 5.0

Jaime van Kessel 2 years ago
parent
commit
8383983ff4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Settings/SettingView.qml

+ 1 - 1
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();
                 }
             }