From 73395f057bde3f6ca9700de1e22a997f7d53d286 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Tue, 30 Mar 2021 05:49:28 -0500 Subject: [PATCH] use a string and not a boolean (stupid) --- src/aolayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aolayer.cpp b/src/aolayer.cpp index f0d5779..18213ce 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))) &&