From 07ce7d4e60cc7113a46c22e318ab5afb8df1648f Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Fri, 1 Sep 2023 14:18:40 +0200 Subject: [PATCH] Tiled: rename `client` --- src/world/clientState/Tiled.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/clientState/Tiled.ts b/src/world/clientState/Tiled.ts index bd541bb..2ada733 100644 --- a/src/world/clientState/Tiled.ts +++ b/src/world/clientState/Tiled.ts @@ -18,10 +18,10 @@ namespace ClientState { const window = this.window; const grid = window.column.grid; - const clientWrapper = window.client; + const client = window.client; window.destroy(passFocus); - clientWrapper.prepareForFloating(grid.desktop.clientArea); + client.prepareForFloating(grid.desktop.clientArea); } private static initSignalManager(world: World, window: Window) {