configure left panel size

This commit is contained in:
David Botton 2024-06-16 16:30:47 -04:00
parent 757fdba563
commit a0c3cb5b70
10 changed files with 18 additions and 9 deletions

View file

@ -16,13 +16,19 @@
(declare (ignore obj))
(set-geometry win
:top (menu-bar-height win)
:left 300
:left *builder-left-panel-size*
:height "" :width ""
:bottom 5 :right 0)
(set-on-window-move win nil)
(set-on-window-move win (lambda (obj)
(setf (width obj) (width obj))
(setf (height obj) (height obj))))))
(set-on-click (create-span (window-icon-area win)
:content "- "
:auto-place :top)
(lambda (obj)
(declare (ignore obj))
(setf (hiddenp win) t)))
(when dir
(uiop:chdir (uiop:native-namestring dir)))
(set-geometry (create-clog-builder-shell (window-content win))