I just want to report what I believe to be a bug. First, system details:
microA1 (256MB RAM), no extra boards
AmigaOS 4.1 update 5
window.class v53.48
intuition.library v53.35
When creating a reaction window with WA_GimmeZeroZero and iconification set up, the iconification gadget is rendered relative to the gimmezerozero co-ordinates rather than in the border area. That is, the iconification gadget is rendered in the user area just below where it should be.
Sample window code:
Code: Select all
windowObj = NewObject(WindowClass, NULL,
WA_CloseGadget, TRUE,
WA_DepthGadget, TRUE,
WA_SizeGadget, TRUE,
WA_SizeBRight, TRUE,
WA_DragBar, TRUE,
WA_GimmeZeroZero, TRUE,
WA_AutoAdjust, TRUE,
WA_Width, 320,
WA_Height, 200,
WA_Zoom, &zoomBox,
WA_PubScreenName, NULL,
WINDOW_Position, WPOS_TOPLEFT,
WINDOW_IconifyGadget, TRUE,
TAG_DONE);

Cheers,
Jason.