diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-02-24 10:26:56 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 10:26:56 -0600 |
| commit | a64241a0f0f05967f58650d9f1b0f35f861ce45a (patch) | |
| tree | 91770d2b15e91d83496babbd13b107a9b278869c /src/text_file_functions.cpp | |
| parent | f1eb91a612ac1406d53b84ee5bad4fa83d78a09f (diff) | |
| parent | 5ac95ada564f11419441eca32907aef7ec16dd90 (diff) | |
Merge pull request #473 from AttorneyOnline/fix/everything
Fix change character lag, bg resizing and repos weirdness, inconsistent behavior, sticker setting etc.
Diffstat (limited to 'src/text_file_functions.cpp')
| -rw-r--r-- | src/text_file_functions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp index 45df30dc..4718f745 100644 --- a/src/text_file_functions.cpp +++ b/src/text_file_functions.cpp @@ -981,6 +981,12 @@ bool AOApplication::is_customchat_enabled() return result.startsWith("true"); } +bool AOApplication::is_sticker_enabled() +{ + QString result = configini->value("sticker", "true").value<QString>(); + return result.startsWith("true"); +} + bool AOApplication::is_continuous_enabled() { QString result = configini->value("continuous_playback", "true").value<QString>(); |
