diff options
author | Mariano Suligoy <marianognu.easyrpg@gmail.com> | 2018-01-21 12:31:59 -0300 |
---|---|---|
committer | Mariano Suligoy <marianognu.easyrpg@gmail.com> | 2018-01-21 12:31:59 -0300 |
commit | 517ff5c8d71884a09114191ac79bf8c990f391ca (patch) | |
tree | eceb91fec9044bd8e66c02f71785b1b7ee52d834 | |
parent | 0359fed313f55dfa9976e8e9606866c2ee53d077 (diff) |
attemp to fix #15870
-rw-r--r-- | scene/resources/style_box.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/style_box.cpp b/scene/resources/style_box.cpp index 6811517ead..de75bb3976 100644 --- a/scene/resources/style_box.cpp +++ b/scene/resources/style_box.cpp @@ -651,8 +651,8 @@ void StyleBoxFlat::draw(RID p_canvas_item, const Rect2 &p_rect) const { } //adapt borders (prevent weired overlapping/glitchy drawings) - int width = style_rect.size.width; - int height = style_rect.size.height; + int width = MAX(style_rect.size.width, 0); + int height = MAX(style_rect.size.height, 0); int adapted_border[4] = { INT_MAX, INT_MAX, INT_MAX, INT_MAX }; adapt_values(MARGIN_TOP, MARGIN_BOTTOM, adapted_border, border_width, height, height, height); adapt_values(MARGIN_LEFT, MARGIN_RIGHT, adapted_border, border_width, width, width, width); |