aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.cpp')
-rw-r--r--src/config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.cpp b/src/config.cpp
index c6bedd2..b148102 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -531,7 +531,7 @@ void Config::load(const QString &path)
// other enum-ish key in this file (sync_on_exit, language, date_format)
// rather than being the one silent exception.
const QString quotePosition =
- settings.value(QStringLiteral("quote_position"), QStringLiteral("above"))
+ settings.value(QStringLiteral("quote_position"), QStringLiteral("below"))
.toString().trimmed();
if (quotePosition.compare(QStringLiteral("above"), Qt::CaseInsensitive) == 0) {
m_compose.quotePosition = ComposeSettings::QuotePosition::Above;
@@ -539,7 +539,7 @@ void Config::load(const QString &path)
m_compose.quotePosition = ComposeSettings::QuotePosition::Below;
} else {
addProblem(tr("[compose] quote_position '%1' is not recognised; "
- "expected above or below. Using above.")
+ "expected above or below. Using below.")
.arg(quotePosition));
}