Browse Source

Use bool for expanded or collapsed state

Contributes to CL-1148
Ian Paschal 6 years ago
parent
commit
3c3343a407
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/UM3NetworkPrinting/resources/qml/ExpandableCard.qml

+ 1 - 1
plugins/UM3NetworkPrinting/resources/qml/ExpandableCard.qml

@@ -14,7 +14,7 @@ Item
 {
     id: base
 
-    property var expanded: false
+    property bool expanded: false
     property var borderWidth: 1
     property color borderColor: "#EAEAEC"
     property color headerBackgroundColor: "white"