1
0
Fork 0

- [GUI] used the new autocomplete widget of nodgui.

This commit is contained in:
cage 2023-02-17 14:30:33 +01:00
parent 4a9e41a307
commit 801a7e8b3f
1 changed files with 6 additions and 4 deletions

View File

@ -164,10 +164,12 @@
(lambda (hint)
(if (> (length hint) 2)
(with-notify-errors
(enqueue-request-and-wait-results :complete-net-address
1
ev:+maximum-event-priority+
hint))
(let ((match-results (enqueue-request-and-wait-results :complete-net-address
1
ev:+maximum-event-priority+
hint)))
(values (getf match-results :matches)
(getf match-results :indices))))
hint)))
(defmethod initialize-instance :after ((object tool-bar) &key &allow-other-keys)