mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-15 01:46:24 +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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user