aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorin1tiate <32779090+in1tiate@users.noreply.github.com>2021-03-30 05:49:28 -0500
committerGitHub <noreply@github.com>2021-03-30 05:49:28 -0500
commit73395f057bde3f6ca9700de1e22a997f7d53d286 (patch)
treeaf9624c72d8a29c86c1b4b078e1f91fa3a6cc9aa
parentdb36bbd4271ba218a602dac2e633f5cde54257f5 (diff)
use a string and not a boolean (stupid)
-rw-r--r--src/aolayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aolayer.cpp b/src/aolayer.cpp
index f0d5779e..18213ce1 100644
--- a/src/aolayer.cpp
+++ b/src/aolayer.cpp
@@ -156,7 +156,7 @@ void CharLayer::load_image(QString p_filename, QString p_charname,
transform_mode = ao_app->get_scaling(
ao_app->get_emote_property(p_charname, p_filename, "scaling"));
stretch = ao_app->get_emote_property(p_charname, p_filename, "stretch")
- .startsWith(true);
+ .startsWith("true");
if ((p_charname == last_char) &&
((p_filename == last_emote) ||
(p_filename.mid(3, -1) == last_emote.mid(3, -1))) &&