Merge pull request #15121 from yanorax/treeitem_set_text_align_fix

Fix TreeItem cell text alignment
This commit is contained in:
Noshyaar 2018-01-01 18:47:35 +07:00 committed by GitHub
commit 45612f1657
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1009,10 +1009,10 @@ void Tree::draw_item_rect(const TreeItem::Cell &p_cell, const Rect2i &p_rect, co
case TreeItem::ALIGN_LEFT:
break; //do none
case TreeItem::ALIGN_CENTER:
rect.position.x = MAX(0, (rect.size.width - w) / 2);
rect.position.x += MAX(0, (rect.size.width - w) / 2);
break; //do none
case TreeItem::ALIGN_RIGHT:
rect.position.x = MAX(0, (rect.size.width - w));
rect.position.x += MAX(0, (rect.size.width - w));
break; //do none
}