From 6bca124d947924f7537666914ff65f1fee40adac Mon Sep 17 00:00:00 2001 From: Lucas Oskorep Date: Fri, 17 Oct 2025 01:26:57 -0400 Subject: [PATCH] feat: cleanup --- src/wm/container.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/wm/container.ts b/src/wm/container.ts index 4098cb3..d7ccfa1 100644 --- a/src/wm/container.ts +++ b/src/wm/container.ts @@ -18,7 +18,6 @@ export default class WindowContainer { _workArea: Rect; constructor(workspaceArea: Rect,) { - // this._id = monitorId; this._tiledItems = []; this._tiledWindowLookup = new Map(); this._workArea = workspaceArea; @@ -39,10 +38,8 @@ export default class WindowContainer { } addWindow(winWrap: WindowWrapper): void { - // Add window to managed windows this._tiledItems.push(winWrap); this._tiledWindowLookup.set(winWrap.getWindowId(), winWrap); - // winWrap.setParent(this); queueEvent({ name: "tiling-windows", callback: () => { @@ -115,7 +112,6 @@ export default class WindowContainer { Logger.log("WorkArea", this._workArea); - // Get all windows for current workspaceArea this._tileItems() return true