1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-01-11 02:03:56 +01:00

- [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

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)