Browse Source

Resolve QML warning

CURA-11263
c.lamboo 1 year ago
parent
commit
a225ee56fd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      resources/qml/Dialogs/AboutDialog.qml

+ 2 - 1
resources/qml/Dialogs/AboutDialog.qml

@@ -109,9 +109,10 @@ UM.Dialog
 
     Flickable
     {
+        id: scroll
         anchors.fill: parent
         ScrollBar.vertical: UM.ScrollBar {
-            visible: contentHeight > height
+            visible: scroll.contentHeight > height
         }
         contentHeight: content.height
         clip: true