diff options
author | Samuel P <samuel.p991@gmail.com> | 2018-10-06 01:06:32 +0200 |
---|---|---|
committer | Samuel P <samuel.p991@gmail.com> | 2018-10-06 13:06:06 +0200 |
commit | cf2bdcbb3fc668da178df3f5640dc12a02a7f11f (patch) | |
tree | 16ea3a58842b841596d55c1b2106b9c8de6589b0 /scene/gui/link_button.cpp | |
parent | a41cf404a9013db6aed56d6ed9b051c2a4948bff (diff) | |
download | redot-engine-cf2bdcbb3fc668da178df3f5640dc12a02a7f11f.tar.gz |
fix hovering on toggled texture buttons
fix hovering on toggled link buttons
Diffstat (limited to 'scene/gui/link_button.cpp')
-rw-r--r-- | scene/gui/link_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/link_button.cpp b/scene/gui/link_button.cpp index d38a067fef..c1561e97ba 100644 --- a/scene/gui/link_button.cpp +++ b/scene/gui/link_button.cpp @@ -75,6 +75,7 @@ void LinkButton::_notification(int p_what) { color = get_color("font_color"); do_underline = underline_mode == UNDERLINE_MODE_ALWAYS; } break; + case DRAW_HOVER_PRESSED: case DRAW_PRESSED: { if (has_color("font_color_pressed")) @@ -91,7 +92,6 @@ void LinkButton::_notification(int p_what) { do_underline = underline_mode != UNDERLINE_MODE_NEVER; } break; - case DRAW_HOVER_PRESSED: break; // Not used in this class case DRAW_DISABLED: { color = get_color("font_color_disabled"); |