Geometry information missing
I am wondering why the geometry information is not completely registered in the capi interface object after display.
I am running 5.1.2 on Mac OS X (32 bit).
You can see from the example code below that the X and Y positions are not recorded in the geometry instance slot.
Thanks
Bruno
CL-USER 26 > (setf interface (make-instance
'capi:interface
:title "Test"
:best-x 100
:best-y 200
:best-width 150
:best-height 75))
#<CAPI:INTERFACE "Test" 20099D27>
CL-USER 27 > (capi:with-geometry interface (list capi:%width% capi:%height% capi:%x% capi:%y%))
(NIL NIL NIL NIL)
CL-USER 28 > (capi:display interface)
#<CAPI:INTERFACE "Test" 20099D27>
CL-USER 29 > (capi:with-geometry interface (list capi:%width% capi:%height% capi:%x% capi:%y%))
(150 75 NIL NIL)