On 30.11.2009, at 22:22, Harvey Chapman wrote: > FLTK-1.3.x + Xvesa + jwm > > I have a top-level window that I'm trying to position at (0, y) where y is > some legitimate value for the screen size and accounts for the window height > (including decorations). If my window's width exceeds the screen width, my > window is always positioned at (0,0). If my window's width is less than the > screen width, the "y" value is honored. > > Is there a way to have my (0,y) position always honored? Is this FLTK or is > it jwm? How can I tell?
FLTK merely calls XMoveWindow with the coordinates that you feed it. The remaining behavior is created by the assumption of you Window Manager. This is a pretty common problem with X11 and WMs that are too smart for their own good. Matthias _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

