Fixed bug for number of arguments to call: move_frame only takes three arguments.

This commit is contained in:
Cas Cremers
2021-01-29 08:15:58 +01:00
parent 7dac8cb5f7
commit c97a04e619

View File

@@ -87,7 +87,7 @@ var oldbindings = {
// See https://github.com/gTile/gTile/commit/fc68797015e13143f74606fcbb9d48859f55dca9 by jshack88.
function moveAppCoordinates(app, x, y, w, h) {
_log("Moving window to ("+x+","+y+"), size ("+w+","+h+")" );
app.move_frame(true, x, y, w, h);
app.move_frame(true, x, y);
app.move_resize_frame(true, x, y, w, h);
}