Browse Source

Add missing source argument to onTriggered handler

Otherwise the source variable is always undefined.

Fixes #9621.
Ghostkeeper 3 years ago
parent
commit
912a65b0f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Cura.qml

+ 1 - 1
resources/qml/Cura.qml

@@ -525,7 +525,7 @@ UM.MainWindow
     Connections
     {
         target: Cura.Actions.configureSettingVisibility
-        function onTriggered()
+        function onTriggered(source)
         {
             preferences.visible = true;
             preferences.setPage(1);