Skip to content

Commit

Permalink
feat(core): enable smooth scrolling by default
Browse files Browse the repository at this point in the history
  • Loading branch information
trollixx committed Apr 16, 2023
1 parent 2f02e1f commit 09aa69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/core/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ void Settings::load()
customCssFile = settings->value(QStringLiteral("custom_css_file")).toString();
externalLinkPolicy = settings->value(QStringLiteral("external_link_policy"),
QVariant::fromValue(ExternalLinkPolicy::Ask)).value<ExternalLinkPolicy>();
isSmoothScrollingEnabled = settings->value(QStringLiteral("smooth_scrolling"), false).toBool();
isSmoothScrollingEnabled = settings->value(QStringLiteral("smooth_scrolling"), true).toBool();
settings->endGroup();

settings->beginGroup(GroupProxy);
Expand Down

0 comments on commit 09aa69e

Please sign in to comment.