-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MxBoxLayout allocation bug #36
Comments
const Lang = imports.lang; Clutter.init(null, null); var mwindow = new Mx.Window(); var mhbox = new Mx.BoxLayout({ orientation: Mx.Orientation.HORIZONTAL }); var hbox_buttons = new Mx.BoxLayout({ orientation: Mx.Orientation.HORIZONTAL }); var hbox_applets = new Mx.BoxLayout({ orientation: Mx.Orientation.HORIZONTAL }); var button = new Mx.Button({ label: "Test1 Test1", var button = new Mx.Button({ label: "Applet1", mwindow.show(); Clutter.main(); |
Previously attached, a javascript example of the problem. |
The children's allocation doesn't honour the MX_ALIGN_END flag when the allocation box is smaller than the sum of all children's natural width/height.
The text was updated successfully, but these errors were encountered: