Browse Source

Fix tab button not switching to the next print setting field

The signal `setActiveFocusToNextSetting` has an argument which wasn't being passed in the
`onSetActiveFocusToNextSetting()` function, which was causing the broken behavior.

CURA-8166
Kostas Karmas 3 years ago
parent
commit
2027309863
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Settings/SettingView.qml

+ 1 - 1
resources/qml/Settings/SettingView.qml

@@ -383,7 +383,7 @@ Item
                         animateContentY.to = contents.contentY;
                         animateContentY.to = contents.contentY;
                         animateContentY.running = true;
                         animateContentY.running = true;
                     }
                     }
-                    function onSetActiveFocusToNextSetting()
+                    function onSetActiveFocusToNextSetting(forward)
                     {
                     {
                         if (forward == undefined || forward)
                         if (forward == undefined || forward)
                         {
                         {