mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
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
This commit is contained in:
parent
d48722fcd1
commit
2027309863
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue