You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
This request is so that if i "drag" a window around it should automatically tile and not only when i drag it to the edges for snapping.
Describe the solution you'd like
Windows that are being moved should be tiled as soon as they are dropped "not being moved anymore"
This floating behavior should still be possible on a bind-able hotkey.
The text was updated successfully, but these errors were encountered:
After some looking around, it seems as if there is no way currently to put the new window in a tile close to its position, but rather to only put it:
Back where it was
The position of a new window
This could be done by a hook on when resize is finished to retile the window
I'm still new to the code of this plugin though, so maybe I missed a way to tile close to position
interactiveMoveResizeFinished() {
this.ctrl.qmlObjects.osd.show("resize done!");
if (
this.ctrl.driverManager.buildingLayout ||
this.ctrl.driverManager.resizingLayout ||
!this.extensions.should_retile // a new parameter to know if we should retile or not is required
) {
return;
}
// Not sure if this is the better than calling putWindowInBestTile()
this.ctrl.driverManager.addWindow(this.window);
this.ctrl.driverManager.rebuildLayout(this.window.output);
}
marked in #142 as next release, hopefully there is a better solution than mine in mind
Is your feature request related to a problem? Please describe.
This request is so that if i "drag" a window around it should automatically tile and not only when i drag it to the edges for snapping.
Describe the solution you'd like
Windows that are being moved should be tiled as soon as they are dropped "not being moved anymore"
This floating behavior should still be possible on a bind-able hotkey.
The text was updated successfully, but these errors were encountered: