Просмотр исходного кода

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 лет назад
Родитель
Сommit
2027309863
1 измененных файлов с 1 добавлено и 1 удалено
  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.running = true;
                     }
-                    function onSetActiveFocusToNextSetting()
+                    function onSetActiveFocusToNextSetting(forward)
                     {
                         if (forward == undefined || forward)
                         {