Use Rect2's get_end().

This commit is contained in:
Anilforextra 2021-09-22 14:09:45 +05:45
parent c1e6c2c49a
commit c63d51408f
4 changed files with 7 additions and 7 deletions

View file

@ -901,7 +901,7 @@ public:
if (layer_index >= layer_count) {
if (!flag_rects.is_empty() && (expansion_rows == 0)) {
const Rect2 &last_rect = flag_rects[flag_rects.size() - 1];
arrow_pos = last_rect.position + last_rect.size;
arrow_pos = last_rect.get_end();
}
break;
}
@ -913,7 +913,7 @@ public:
// Keep last valid cell position for the expansion icon.
if (!flag_rects.is_empty() && (expansion_rows == 0)) {
const Rect2 &last_rect = flag_rects[flag_rects.size() - 1];
arrow_pos = last_rect.position + last_rect.size;
arrow_pos = last_rect.get_end();
}
++expansion_rows;