summaryrefslogtreecommitdiffstats
path: root/scene/gui
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-03-13 17:26:00 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-03-13 17:26:00 +0200
commitaada3953543b7a70ad4b92bbcaa35efae7bc9799 (patch)
tree8124d0c9f6a387b00819b4fe3b030dc834a0bbae /scene/gui
parentc8fce1661da2ed02e94d3edd91fc3f31aa6888cc (diff)
downloadredot-engine-aada3953543b7a70ad4b92bbcaa35efae7bc9799.tar.gz
Fix text clipping on the right side.
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/button.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/button.cpp b/scene/gui/button.cpp
index 724714b93b..29a0681f9c 100644
--- a/scene/gui/button.cpp
+++ b/scene/gui/button.cpp
@@ -293,7 +293,7 @@ void Button::_notification(int p_what) {
int text_clip = size.width - style->get_minimum_size().width - icon_ofs.width;
text_buf->set_width(clip_text ? text_clip : -1);
- int text_width = clip_text ? MIN(text_clip, text_buf->get_size().x) : text_buf->get_size().x;
+ int text_width = MAX(1, clip_text ? MIN(text_clip, text_buf->get_size().x) : text_buf->get_size().x);
if (_internal_margin[SIDE_LEFT] > 0) {
text_clip -= _internal_margin[SIDE_LEFT] + get_theme_constant(SNAME("hseparation"));