summaryrefslogtreecommitdiffstats
path: root/scene/gui/link_button.cpp
diff options
context:
space:
mode:
authorvolzhs <volzhs@gmail.com>2019-08-05 08:13:47 +0900
committervolzhs <volzhs@gmail.com>2020-04-29 21:56:15 +0900
commit9f1de2cfddf2f5f8f4a9d1f861a3141c052517a2 (patch)
tree59d41eef67b91879017feba086031f05dbb2651a /scene/gui/link_button.cpp
parent1d45a269f87ff38e04169e6aa85d9ecd73fb3473 (diff)
downloadredot-engine-9f1de2cfddf2f5f8f4a9d1f861a3141c052517a2.tar.gz
Use underline position and thickness value in font file
Diffstat (limited to 'scene/gui/link_button.cpp')
-rw-r--r--scene/gui/link_button.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/link_button.cpp b/scene/gui/link_button.cpp
index 3dffa06b49..098e8297ad 100644
--- a/scene/gui/link_button.cpp
+++ b/scene/gui/link_button.cpp
@@ -111,11 +111,11 @@ void LinkButton::_notification(int p_what) {
draw_string(font, Vector2(0, font->get_ascent()), text, color);
if (do_underline) {
- int underline_spacing = get_theme_constant("underline_spacing");
+ int underline_spacing = get_theme_constant("underline_spacing") + font->get_underline_position();
int width = font->get_string_size(text).width;
int y = font->get_ascent() + underline_spacing;
- draw_line(Vector2(0, y), Vector2(width, y), color);
+ draw_line(Vector2(0, y), Vector2(width, y), color, font->get_underline_thickness());
}
} break;