mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 09:49:21 +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
Notes:
sideshowbarker
2024-07-17 05:23:40 +09:00
Author: https://github.com/awesomekling
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