浏览代码

Merge pull request #29648 from jbuck3/tree-tooltips

Fix Tree button tooltips
Rémi Verschelde 6 年之前
父节点
当前提交
434a1fddf3
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      scene/gui/tree.cpp

+ 4 - 0
scene/gui/tree.cpp

@@ -3720,6 +3720,10 @@ String Tree::get_tooltip(const Point2 &p_pos) const {
 
 			const TreeItem::Cell &c = it->cells[col];
 			int col_width = get_column_width(col);
+
+			for (int i = 0; i < col; i++)
+				pos.x -= get_column_width(i);
+
 			for (int j = c.buttons.size() - 1; j >= 0; j--) {
 				Ref<Texture> b = c.buttons[j].texture;
 				Size2 size = b->get_size() + cache.button_pressed->get_minimum_size();