From 7f2f0a871a0b944e98249808eef8d7bf0a5bca3c Mon Sep 17 00:00:00 2001 From: Bruno Tavares Date: Fri, 3 May 2019 08:20:57 -0300 Subject: [PATCH] Make it compatible with Keepass 2.42 Applied patch from: - https://sourceforge.net/p/keepass/discussion/329221/thread/de57e6358a/#b01d - https://github.com/IUSR/keepasshttp/commit/b94660bd33ca95f6586a835172462fb691be7822 --- KeePassHttp/Handlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeePassHttp/Handlers.cs b/KeePassHttp/Handlers.cs index 53d8755..306f6ee 100644 --- a/KeePassHttp/Handlers.cs +++ b/KeePassHttp/Handlers.cs @@ -61,7 +61,7 @@ private string GetScheme(string uri) private bool canShowBalloonTips() { // tray icon is not visible --> no balloon tips for it - if (Program.Config.UI.TrayIcon.ShowOnlyIfTrayed && !host.MainWindow.IsTrayed()) + if (Program.Config.UI.TrayIcon.ShowOnlyIfTrayedEx && !host.MainWindow.IsTrayed()) { return false; }