Fixed get_item_at_position being weird

This commit is contained in:
Tomasz Chabora 2019-06-01 14:42:13 +02:00
parent cfb9709c10
commit 59f403de0b

View file

@ -1260,7 +1260,7 @@ int ItemList::get_item_at_position(const Point2 &p_pos, bool p_exact) const {
Rect2 rc = items[i].rect_cache;
if (i % current_columns == current_columns - 1) {
rc.size.width = get_size().width; //not right but works
rc.size.width = get_size().width - rc.position.x; //make sure you can still select the last item when clicking past the column
}
if (rc.has_point(pos)) {