Hi
I noticed a strange behavior when using left resize handle on windows
with a minimum size: As soon as the size gets smaller, the window is
moved to the right, because the x value is not held fix.
A little modification in AG_WindowSetGeometryRect() fixes this:
- if (nw < wMin) { nw = wMin; }
+ if (nw < wMin) {
+ if ( ox < r.x ) { r.x -= wMin - nw; }
+ nw = wMin;
+}
Cheers,
--
42Bastian
------------------
Parts of this email are written with invisible ink.
Note: SPAM-only account, direct mail to b...@...
_______________________________________________
Agar mailing list
[email protected]
http://libagar.org/lists.html