diff options
| author | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2019-05-27 15:14:48 +0100 |
|---|---|---|
| committer | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2019-05-27 15:14:48 +0100 |
| commit | e975d9dcdba1bd86ecef32b65cbfe74646b6f1fc (patch) | |
| tree | c01f67d6dd0d4d3ad0ceedc24c4cedaaa589067a | |
| parent | eb70999ffa41d36f3b7227780b878b8dc64efdd0 (diff) | |
Fix uninitialised member variable 'meta_hovering' in RichTextLabel
| -rw-r--r-- | scene/gui/rich_text_label.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 101eb2ac88..da452e3f10 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -2336,6 +2336,7 @@ RichTextLabel::RichTextLabel() { tab_size = 4; default_align = ALIGN_LEFT; underline_meta = true; + meta_hovering = NULL; override_selected_font_color = false; scroll_visible = false; |