From d7115a42df0cd77fa195ebf59a62c8fd5431fdaf 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!