1
0
Fork 0

- [GUI] revive stream with doubleclick on an intem of the stream frame.

This commit is contained in:
cage 2023-08-15 13:22:13 +02:00
parent 2239d4fcbb
commit 9682b53522
1 changed files with 5 additions and 0 deletions

View File

@ -123,4 +123,9 @@
(gui:grid close-button 3 0 :sticky :s) (gui:grid close-button 3 0 :sticky :s)
(gui:grid-columnconfigure wrapper-frame 1 :weight 2) (gui:grid-columnconfigure wrapper-frame 1 :weight 2)
(gui:grid-rowconfigure wrapper-frame :all :weight 1) (gui:grid-rowconfigure wrapper-frame :all :weight 1)
(gui:bind (gui:treeview (gui-goodies:tree table))
#$<Double-1>$
(lambda (e)
(declare (ignore e))
(funcall (revive-stream-clsr table))))
wrapper-frame)) wrapper-frame))