diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2021-03-30 05:49:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-30 05:49:28 -0500 |
| commit | 73395f057bde3f6ca9700de1e22a997f7d53d286 (patch) | |
| tree | af9624c72d8a29c86c1b4b078e1f91fa3a6cc9aa | |
| parent | db36bbd4271ba218a602dac2e633f5cde54257f5 (diff) | |
use a string and not a boolean (stupid)
| -rw-r--r-- | src/aolayer.cpp | 2 |
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))) && |
