Merge pull request #15121 from yanorax/treeitem_set_text_align_fix
Fix TreeItem cell text alignment
This commit is contained in:
commit
45612f1657
1 changed files with 2 additions and 2 deletions
|
@ -1009,10 +1009,10 @@ void Tree::draw_item_rect(const TreeItem::Cell &p_cell, const Rect2i &p_rect, co
|
||||||
case TreeItem::ALIGN_LEFT:
|
case TreeItem::ALIGN_LEFT:
|
||||||
break; //do none
|
break; //do none
|
||||||
case TreeItem::ALIGN_CENTER:
|
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
|
break; //do none
|
||||||
case TreeItem::ALIGN_RIGHT:
|
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
|
break; //do none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue