Hi,
I'm trying to port my application to 0.8 and I've found a strange behaviour if
I add a window to a desktop which is inside a splitpane. If I try to move the
window, it jumps to the right with the width of the left pane. You can change
the jump width by changing the width of the pane.
Here is a example which shows what I mean:
qx.Class.define("custom.Application",
{
extend : qx.application.Standalone,
members :
{
main : function()
{
this.base(arguments);
var split = new qx.ui.splitpane.Pane("horizontal");
this.getRoot().add(split, {edge: 0});
split.add(new qx.ui.form.TextField(), 0);
var desktop = new qx.ui.window.Desktop(new qx.ui.window.Manager());
split.add(desktop, 1);
var win = new qx.ui.window.Window("Window");
desktop.add(win);
win.open();
}
}
});
Greetings,
Andreas
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel