remove default locations for many windows

This commit is contained in:
David Botton 2024-05-30 23:16:40 -04:00
parent c2d3837f3c
commit fe12e47acb
4 changed files with 0 additions and 5 deletions

View file

@ -4,7 +4,6 @@
(let* ((*default-title-class* *builder-title-class*)
(*default-border-class* *builder-border-class*)
(win (create-gui-window obj :title "ASDF System Browser"
:top 40 :left 225
:width 592 :height 435
:client-movement *client-side-movement*))
(panel (create-asdf-systems (window-content win))))

View file

@ -3,7 +3,6 @@
(defun on-open-repl-console (obj repl)
(let* ((win (on-open-file obj :title "CLOG REPL Console"
:is-console t
:top 520 :left 300
:closer-html "⨀"
:editor-use-console-for-evals t)))
(set-on-window-can-close win (lambda (obj)
@ -21,7 +20,6 @@
(win (create-gui-window obj :title "CLOG Builder REPL"
:has-pinner t
:keep-on-top t
:top 40 :left 300
:width 700 :height 480
:client-movement *client-side-movement*))
(repl (create-clog-builder-repl (window-content win))))

View file

@ -7,7 +7,6 @@
(win (create-gui-window obj :title (format nil "OS Pseudo Shell - ~A - ~A"
(uiop:operating-system)
(uiop:hostname))
:top 40 :left 225
:width 600 :height 400
:client-movement *client-side-movement*)))
(when dir

View file

@ -4,7 +4,6 @@
(let* ((*default-title-class* *builder-title-class*)
(*default-border-class* *builder-border-class*)
(win (create-gui-window obj :title "System Browser"
:top 40 :left 225
:width 685 :height 530
:client-movement *client-side-movement*))
(panel (create-sys-browser (window-content win))))