mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-17 09:24:28 -05:00
Add setting for not displaying KeePassHTTP migration popup
This commit is contained in:
parent
d12f15da92
commit
c27ee6aba8
7 changed files with 65 additions and 16 deletions
|
|
@ -151,6 +151,16 @@ void BrowserSettings::setSupportKphFields(bool supportKphFields)
|
|||
config()->set("Browser/SupportKphFields", supportKphFields);
|
||||
}
|
||||
|
||||
bool BrowserSettings::noMigrationPrompt()
|
||||
{
|
||||
return config()->get("Browser/NoMigrationPrompt", false).toBool();
|
||||
}
|
||||
|
||||
void BrowserSettings::setNoMigrationPrompt(bool prompt)
|
||||
{
|
||||
config()->set("Browser/NoMigrationPrompt", prompt);
|
||||
}
|
||||
|
||||
bool BrowserSettings::supportBrowserProxy()
|
||||
{
|
||||
return config()->get("Browser/SupportBrowserProxy", true).toBool();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue