Generic function
Lowers the specified frame to the bottom of the stack of visible windows.
lower-frame frame => ()
<frame>.
None
duim-frames
duim-frames
Lowers frame to the bottom of the stack of visible windows. After calling this function, frame will appear beneath any occluding windows that may be on the screen.
The following example creates and displays a simple frame, then lowers it.
define variable *frame* =
make(<simple-frame>, title: "A frame",
layout: make(<button>));start-frame(*frame*); lower-frame(*frame*);