From e4932abd39a19a9092ce4cd812938f82b9a2afb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Simon=20Fauteux-Chapleau?= <francois-simon.fauteux-chapleau@savoirfairelinux.com> Date: Fri, 9 May 2025 16:46:22 -0400 Subject: [PATCH] spellcheck: fix default language value The default value was set to "None" in appsettingsmanager.h but the rest of the code assumes that the default is "NONE" (see commit 2a72da5). GitLab: #1997 Change-Id: Ifeac3399b1b48bad0863a1b7da9228df43f73b76 --- src/app/appsettingsmanager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/appsettingsmanager.h b/src/app/appsettingsmanager.h index f94cb7dd..17561df0 100644 --- a/src/app/appsettingsmanager.h +++ b/src/app/appsettingsmanager.h @@ -63,7 +63,7 @@ extern const QString defaultDownloadPath; X(WindowState, QWindow::AutomaticVisibility) \ X(EnableExperimentalSwarm, false) \ X(LANG, "SYSTEM") \ - X(SpellLang, "None") \ + X(SpellLang, "NONE") \ X(EnableSpellCheck, true) \ X(PluginStoreEndpoint, "https://plugins.jami.net") \ X(PositionShareDuration, 15) \ -- GitLab