From 162c6b8e630ef8c455169c749e3916699e06d976 Mon Sep 17 00:00:00 2001 From: cage Date: Wed, 8 Mar 2023 21:02:41 +0100 Subject: [PATCH] - [GUI] hide candidates when loading an url. --- src/gui/client/main-window.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/client/main-window.lisp b/src/gui/client/main-window.lisp index 36ae163..86103e0 100644 --- a/src/gui/client/main-window.lisp +++ b/src/gui/client/main-window.lisp @@ -500,6 +500,7 @@ (with-accessors ((tool-bar tool-bar)) main-window (with-accessors ((iri-entry iri-entry)) tool-bar (let* ((iri (trim-blanks (gui:text iri-entry)))) + (gui-mw::hide-candidates iri-entry) (open-iri iri main-window use-cache)))))) (defun setup-main-window-events (main-window)