summaryrefslogtreecommitdiff
path: root/scene/resources/style_box.cpp
diff options
context:
space:
mode:
authorMarcel Admiraal <madmiraal@users.noreply.github.com>2020-12-28 09:11:58 +0000
committerMarcel Admiraal <madmiraal@users.noreply.github.com>2020-12-28 12:47:33 +0000
commitb628912af0bd78e892b5609efdfb231478713919 (patch)
tree40e7911e9c2c95eadaa4c47b6a6aa4e5ee279ce0 /scene/resources/style_box.cpp
parentbe509bf5e4d00b33f2867e6d06a23285b2a8fd29 (diff)
Rename Rect2 and Rect2i grow_margin() to grow_side()
Diffstat (limited to 'scene/resources/style_box.cpp')
-rw-r--r--scene/resources/style_box.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/style_box.cpp b/scene/resources/style_box.cpp
index 0271edaff0..3c0f485561 100644
--- a/scene/resources/style_box.cpp
+++ b/scene/resources/style_box.cpp
@@ -687,7 +687,7 @@ void StyleBoxFlat::draw(RID p_canvas_item, const Rect2 &p_rect) const {
if (aa_on) {
for (int i = 0; i < 4; i++) {
if (border_width[i] > 0) {
- border_style_rect = border_style_rect.grow_margin((Side)i, -aa_size_grow);
+ border_style_rect = border_style_rect.grow_side((Side)i, -aa_size_grow);
}
}
}