From 887c4dff4c575c8b3bc92d0f05b322790ab99950 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Thu, 24 Feb 2022 20:44:39 +0800 Subject: [PATCH] ctlAlertWindow // Make the NonModalAlertWindow work again. - A bug was introduced when filenames were rebranded, leading to the failure of calling the correct XIB window. This commit fixes this issue. --- Source/WindowControllers/ctlNonModalAlertWindow.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WindowControllers/ctlNonModalAlertWindow.swift b/Source/WindowControllers/ctlNonModalAlertWindow.swift index 2097ea4c..a9ed42a3 100644 --- a/Source/WindowControllers/ctlNonModalAlertWindow.swift +++ b/Source/WindowControllers/ctlNonModalAlertWindow.swift @@ -26,7 +26,7 @@ import Cocoa class ctlNonModalAlertWindow: NSWindowController { @objc(sharedInstance) - static let shared = ctlNonModalAlertWindow(windowNibName: "ctlNonModalAlertWindow") + static let shared = ctlNonModalAlertWindow(windowNibName: "frmNonModalAlertWindow") @IBOutlet weak var titleTextField: NSTextField! @IBOutlet weak var contentTextField: NSTextField!