refactor: remove space from Floating Layout id

This commit is contained in:
Mikhail Zolotukhin 2022-01-21 17:46:05 +03:00
parent 28a5522ca9
commit f9a2a279a4
2 changed files with 2 additions and 3 deletions

View File

@ -536,10 +536,9 @@ export class ToggleStairLayout extends ToggleCurrentLayout {
export class ToggleFloatingLayout extends ToggleCurrentLayout {
constructor(protected engine: Engine, protected log: Log) {
// NOTE: space is intentional (Temporary)
super(
engine,
"FloatingLayout ",
"FloatingLayout",
"toggle_float_layout",
"Toggle Floating Layout",
"Meta+Shift+F",

View File

@ -11,7 +11,7 @@ import { Rect } from "../../util/rect";
import { Controller } from "../../controller";
export default class FloatingLayout implements WindowsLayout {
public static readonly id = "FloatingLayout ";
public static readonly id = "FloatingLayout";
public static instance = new FloatingLayout();
public readonly classID = FloatingLayout.id;
public readonly name = "Floating Layout";