()
| 191 | } |
| 192 | |
| 193 | private _createTilingManagers() { |
| 194 | debug('building a tiling manager for each monitor'); |
| 195 | this._tilingManagers.forEach((tm) => tm.destroy()); |
| 196 | this._tilingManagers = getMonitors().map( |
| 197 | (monitor) => |
| 198 | new TilingManager(monitor, !this._fractionalScalingEnabled), |
| 199 | ); |
| 200 | this._tilingManagers.forEach((tm) => tm.enable()); |
| 201 | } |
| 202 | |
| 203 | private _setupSignals() { |
| 204 | if (!this._signals) return; |
no test coverage detected