diff options
author | rdb <git@rdb.name> | 2016-10-28 10:52:57 +0200 |
---|---|---|
committer | rdb <git@rdb.name> | 2016-10-28 10:52:57 +0200 |
commit | d517bc908f9c1e00503266ab9a639552660cf72c (patch) | |
tree | ccf19aa2334617bdef182fd926b5c76a4499f39b /scene/gui/link_button.h | |
parent | 8321e48ab0ac0700e1aef8f829140052c1ba4c6d (diff) |
Add "Never" underline mode to LinkButton
Diffstat (limited to 'scene/gui/link_button.h')
-rw-r--r-- | scene/gui/link_button.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/gui/link_button.h b/scene/gui/link_button.h index 9978f66cc0..a44fc2ec1b 100644 --- a/scene/gui/link_button.h +++ b/scene/gui/link_button.h @@ -40,7 +40,8 @@ public: enum UnderlineMode { UNDERLINE_MODE_ALWAYS, - UNDERLINE_MODE_ON_HOVER + UNDERLINE_MODE_ON_HOVER, + UNDERLINE_MODE_NEVER }; private: String text; |