fix(action): 🐛 notify about rotation non-appliance

This commit is contained in:
Mikhail Zolotukhin 2021-09-21 22:50:11 +03:00
parent 9d1e535725
commit 78c220e496

View File

@ -508,7 +508,7 @@ export class Rotate extends ActionImpl implements Action {
} }
public executeWithoutLayoutOverride(): void { public executeWithoutLayoutOverride(): void {
this.engine.focusDir("left"); this.engine.showNotification("Rotation Not Applicable");
} }
} }
@ -518,6 +518,6 @@ export class RotatePart extends ActionImpl implements Action {
} }
public executeWithoutLayoutOverride(): void { public executeWithoutLayoutOverride(): void {
this.engine.focusDir("left"); this.engine.showNotification("Rotation Not Applicable");
} }
} }