@@ -8,7 +8,7 @@ import Foundation
88import SwiftUI
99import XcodeInspector
1010
11- final class WindowsController : NSObject {
11+ final class WidgetWindowsController : NSObject {
1212 let userDefaultsObservers = WidgetUserDefaultsObservers ( )
1313 var xcodeInspector : XcodeInspector { . shared }
1414
@@ -192,7 +192,7 @@ final class WindowsController: NSObject {
192192 }
193193}
194194
195- extension WindowsController : NSWindowDelegate {
195+ extension WidgetWindowsController : NSWindowDelegate {
196196 func windowWillMove( _ notification: Notification ) {
197197 guard ( notification. object as? NSWindow ) === windows. chatPanelWindow else { return }
198198 Task { @MainActor in
@@ -218,7 +218,7 @@ extension WindowsController: NSWindowDelegate {
218218 }
219219}
220220
221- private extension WindowsController {
221+ private extension WidgetWindowsController {
222222 func activate( _ app: AppInstanceInspector ) {
223223 guard currentApplicationProcessIdentifier != app. processIdentifier else { return }
224224 currentApplicationProcessIdentifier = app. processIdentifier
@@ -310,7 +310,7 @@ private extension WindowsController {
310310 }
311311}
312312
313- extension WindowsController {
313+ extension WidgetWindowsController {
314314 @MainActor
315315 func hidePanelWindows( ) {
316316 windows. sharedPanelWindow. alphaValue = 0
@@ -423,7 +423,7 @@ extension WindowsController {
423423public final class WidgetWindows {
424424 let store : StoreOf < WidgetFeature >
425425 let chatTabPool : ChatTabPool
426- weak var controller : WindowsController ?
426+ weak var controller : WidgetWindowsController ?
427427
428428 // you should make these window `.transient` so they never show up in the mission control.
429429
0 commit comments