From 20273098634f81fcf3f8d2ef37a888e357bcf9c3 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 9 Apr 2021 15:19:38 +0200 Subject: [PATCH] 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 --- resources/qml/Settings/SettingView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index fae8f9a186..6e3fa839dc 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/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) {