add right arrow to directory tree

This commit is contained in:
David Botton 2024-05-26 23:23:28 -04:00
parent 4323b3c5a3
commit a65dd8f131

View file

@ -14,6 +14,11 @@
:overflow :scroll
:top 30 :bottom 0 :left 0 :right 0)))
(set-geometry win :top (menu-bar-height win) :left 0 :height "" :bottom 5 :right "")
(set-on-click (create-span (window-icon-area win) :content "← ")
(lambda (obj)
(declare (ignore obj))
(set-geometry win :top (menu-bar-height win) :left 0 :height "" :bottom 5 :right "")
:auto-place :top))
(setf (positioning root-dir) :absolute)
(set-geometry root-dir :height 27 :width "100%" :top 0 :left 0 :right 0)
(setf (text-value root-dir) (format nil "~A" (or dir (uiop:getcwd))))