Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2022-05-10 14:30:24 +0300
committerJaime van Kessel <nallath@gmail.com>2022-05-10 14:30:24 +0300
commit0ac4fa20fd6706dafb96bf4a90011f5dabeacba0 (patch)
treeaebd93564618bd8a3d5af39106ff2365c4df99e6 /resources/qml
parent4819b2484eaa82679fcd0b9048f968c1947bc018 (diff)
Fix injection warning for hamburger menu
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Preferences/ProfilesPage.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Preferences/ProfilesPage.qml b/resources/qml/Preferences/ProfilesPage.qml
index 9b062a0347..b7030f242b 100644
--- a/resources/qml/Preferences/ProfilesPage.qml
+++ b/resources/qml/Preferences/ProfilesPage.qml
@@ -59,7 +59,7 @@ UM.ManagementPage
scrollviewCaption: catalog.i18nc("@label", "Profiles compatible with active printer:") + "<br><b>" + Cura.MachineManager.activeMachine.name + "</b>"
hamburgerButtonVisible: hasCurrentItem
- onHamburgeButtonClicked: {
+ onHamburgeButtonClicked: (hamburger_button) => {
const hamburerButtonHeight = hamburger_button.height;
menu.popup(hamburger_button, -menu.width + hamburger_button.width / 2, hamburger_button.height);