diff options
author | volzhs <volzhs@gmail.com> | 2018-12-25 09:18:18 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2018-12-25 09:18:18 +0900 |
commit | 6a43f0a9012f3716a4b5e867de6c957ba1e7f12f (patch) | |
tree | a365f051a8b33d72544ba4b1b75e10dd07d23bbc | |
parent | 10e9221c49eddc05cb36c0b582060cac9e4c8cef (diff) |
Draw relationship lines when its value is higher than 0
-rw-r--r-- | scene/gui/tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index 479b035f86..f22c2e260d 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -1419,7 +1419,7 @@ int Tree::draw_item(const Point2i &p_pos, const Point2 &p_draw_ofs, const Size2 while (c) { - if (cache.draw_relationship_lines == 1 && (!hide_root || c->parent != root)) { + if (cache.draw_relationship_lines > 0 && (!hide_root || c->parent != root)) { int root_ofs = children_pos.x + ((p_item->disable_folding || hide_folding) ? cache.hseparation : cache.item_margin); int parent_ofs = p_pos.x + ((p_item->disable_folding || hide_folding) ? cache.hseparation : cache.item_margin); Point2i root_pos = Point2i(root_ofs, children_pos.y + label_h / 2) - cache.offset + p_draw_ofs; |