Add warning message to browser integration settings when keepassxc-proxy is not found (#2396)

This commit is contained in:
Sami Vänttinen 2018-10-23 16:03:18 +03:00 committed by Jonathan White
parent b45f0e3e46
commit 5c92082f7c
6 changed files with 131 additions and 1 deletions

View file

@ -490,3 +490,8 @@ void BrowserSettings::updateBinaryPaths(QString customProxyLocation)
bool isProxy = supportBrowserProxy();
m_hostInstaller.updateBinaryPaths(isProxy, customProxyLocation);
}
bool BrowserSettings::checkIfProxyExists(QString& path)
{
return m_hostInstaller.checkIfProxyExists(supportBrowserProxy(), customProxyLocation(), path);
}