Commit 37acc58c authored by jan.koester's avatar jan.koester
Browse files

test

parent 435199b4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ ColumnLayout {
                spacing: 6

                Label {
                    text: treeDelegate.hasChildren
                    text: treeDelegate.nodeHasChildren
                        ? (treeDelegate.expanded ? "" : "")
                        : ""
                    font.pixelSize: 10
@@ -110,7 +110,7 @@ ColumnLayout {
                    }
                }
                onDoubleClicked: {
                    if (treeDelegate.hasChildren)
                    if (treeDelegate.nodeHasChildren)
                        docTreeView.toggleExpanded(treeDelegate.row)
                }
            }