aboutsummaryrefslogtreecommitdiff
path: root/src/Entry.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-11-05 15:46:07 +0100
committerdec05eba <dec05eba@protonmail.com>2020-11-05 15:46:07 +0100
commitaa4ff4cc74e7c654df8e399d4aae4cb8aa8fbd33 (patch)
treef9718e6c2dbe009d7a394e070e596ea6f55346ba /src/Entry.cpp
parentff207b4c7f160be58a747f0115e74ea136459f2c (diff)
Fix text edit in matrix for non ascii characters
Diffstat (limited to 'src/Entry.cpp')
-rw-r--r--src/Entry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entry.cpp b/src/Entry.cpp
index ae370c5..cc05aa0 100644
--- a/src/Entry.cpp
+++ b/src/Entry.cpp
@@ -60,7 +60,7 @@ namespace QuickMedia {
}
void Entry::set_text(std::string new_text) {
- text.setString(std::move(new_text));
+ text.setString(sf::String::fromUtf8(new_text.data(), new_text.data() + new_text.size()));
}
void Entry::move_caret_to_end() {