summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-12-10 10:46:09 +0100
committerGitHub <noreply@github.com>2022-12-10 10:46:09 +0100
commit879499a0aa2ade91a03bf6fb6c8904ee636f6a9e (patch)
tree46c7baf20da6341b709f70886829d9bd99c83607 /scene
parentcc5d2c68a86bfa06ed28c92636c7bc44def9f5e3 (diff)
parent8f93b14030c4fee71b5264b3015f28a56cc7ab06 (diff)
Merge pull request #69844 from AmyGilhespy/patch-1
Fix glyph_flags typo.
Diffstat (limited to 'scene')
-rw-r--r--scene/gui/rich_text_effect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/rich_text_effect.h b/scene/gui/rich_text_effect.h
index 66b8a21760..886442bc80 100644
--- a/scene/gui/rich_text_effect.h
+++ b/scene/gui/rich_text_effect.h
@@ -79,7 +79,7 @@ public:
uint32_t get_glyph_index() const { return glyph_index; };
void set_glyph_index(uint32_t p_glyph_index) { glyph_index = p_glyph_index; };
- uint16_t get_glyph_flags() const { return glyph_index; };
+ uint16_t get_glyph_flags() const { return glyph_flags; };
void set_glyph_flags(uint16_t p_glyph_flags) { glyph_flags = p_glyph_flags; };
uint8_t get_glyph_count() const { return glyph_count; };