diff options
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/Text.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/graphics/Text.cpp b/src/graphics/Text.cpp index fa82a88..a30cdf3 100644 --- a/src/graphics/Text.cpp +++ b/src/graphics/Text.cpp @@ -24,16 +24,15 @@ namespace mgl { Text& Text::operator=(const Text &other) { font = other.font; str = other.str; - mgl_text_init(&text, font ? font->internal_font() : nullptr, str.c_str(), str.size()); - mgl_text_set_position(&text, { other.text.position.x, other.text.position.y }); + text = other.text; + mgl_text_set_string(&text, str.c_str(), str.size()); return *this; } Text::Text(Text &&other) { font = std::move(other.font); - str = std::move(other.str); text = std::move(other.text); - mgl_text_init(&text, font ? font->internal_font() : nullptr, str.c_str(), str.size()); + set_string(std::move(other.str)); other.font = nullptr; other.str.clear(); |