We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7508247 commit c0efa1aCopy full SHA for c0efa1a
src/controller/actions/shortcuts.ts
@@ -356,5 +356,13 @@ export class ShortcutManager {
356
engineConfig.engineType = engineType;
357
this.ctrl.driverManager.setEngineConfig(desktop, engineConfig);
358
this.ctrl.qmlObjects.osd.show("Restart: " + engineName(engineType));
359
+ this.ctrl.workspace.windows.forEach(window => {
360
+ if (this.ctrl.windowExtensions.get(window)!.isTiled) {
361
+ this.ctrl.driverManager.untileWindow(window);
362
+ this.ctrl.driverManager.rebuildLayout();
363
+ this.ctrl.driverManager.addWindowToPosition(window, null);
364
365
+ }
366
+ });
367
}
368
0 commit comments