diff --git a/KeePassHttp/Handlers.cs b/KeePassHttp/Handlers.cs index 53d8755..d45f123 100644 --- a/KeePassHttp/Handlers.cs +++ b/KeePassHttp/Handlers.cs @@ -310,6 +310,7 @@ private void GetLoginsHandler(Request r, Response resp, Aes aes) { f.Icon = win.Icon; f.Plugin = this; + f.StartPosition = win.Visible ? FormStartPosition.CenterParent : FormStartPosition.CenterScreen; f.Entries = (from e in items where filter(e.entry) select e.entry).ToList(); //f.Entries = needPrompting.ToList(); f.Host = submithost != null ? submithost : host;