1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00:00

Ladybird/Qt: Turn off web search and autocomplete by default

Anyone who wants this can enable it in the settings window.
This commit is contained in:
Andreas Kling 2023-08-17 16:48:21 +02:00
parent d972338208
commit 258af0fb1b

View file

@ -107,7 +107,7 @@ void Settings::set_new_tab_page(QString const& page)
bool Settings::enable_autocomplete()
{
return m_qsettings->value("enable_autocomplete", true).toBool();
return m_qsettings->value("enable_autocomplete", false).toBool();
}
void Settings::set_enable_autocomplete(bool enable)
@ -117,7 +117,7 @@ void Settings::set_enable_autocomplete(bool enable)
bool Settings::enable_search()
{
return m_qsettings->value("enable_search", true).toBool();
return m_qsettings->value("enable_search", false).toBool();
}
void Settings::set_enable_search(bool enable)