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:
parent
d972338208
commit
258af0fb1b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue