diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-03-30 21:44:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-30 21:44:58 -0500 |
| commit | b7f97604ffa6eb680f136c2b5a62cd6becd393c7 (patch) | |
| tree | af9624c72d8a29c86c1b4b078e1f91fa3a6cc9aa | |
| parent | db36bbd4271ba218a602dac2e633f5cde54257f5 (diff) | |
| parent | 73395f057bde3f6ca9700de1e22a997f7d53d286 (diff) | |
Merge pull request #512 from AttorneyOnline/fix/argh
Fix per-emote stretch setting
| -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))) && |
