diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-29 12:34:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-29 12:34:09 -0500 |
commit | aded28f276554f7f654ca3f6391c991b872862ac (patch) | |
tree | cfae0437bd8667186718e5f2e37a825f16d8f33a /src/frontend_common/config.cpp | |
parent | 80c4743754eecf7505b00c114e5f072b8a3277b3 (diff) | |
parent | 7dddf5cb3cbc09ce32c108d2fb1343ce43d7641c (diff) |
Merge pull request #12204 from t895/config-migration
android: Multi directory UI
Diffstat (limited to 'src/frontend_common/config.cpp')
-rw-r--r-- | src/frontend_common/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp index 7474cb0f9..1a0491c2c 100644 --- a/src/frontend_common/config.cpp +++ b/src/frontend_common/config.cpp @@ -924,12 +924,14 @@ std::string Config::AdjustOutputString(const std::string& string) { // Windows requires that two forward slashes are used at the start of a path for unmapped // network drives so we have to watch for that here +#ifndef ANDROID if (string.substr(0, 2) == "//") { boost::replace_all(adjusted_string, "//", "/"); adjusted_string.insert(0, "/"); } else { boost::replace_all(adjusted_string, "//", "/"); } +#endif // Needed for backwards compatibility with QSettings deserialization for (const auto& special_character : special_characters) { |