Hi, i am trying to write script (using javascript) which changes size of some windows. When script is executed, only one dimension of window can be changed at once. So when doing this: client.frameGeometry.width = 500; client.frameGeometry.height = 500; only window height is changed. When these lines are swapped, only width is changed. This works without problem on X11. However I've found workaround which works on both: client.frameGeometry.width = 500; client.geometryChanged.connect(() => { client.frameGeometry.height = 500; });