focalboard/mac/Focalboard/AutoSaveWindowController.swift
2021-01-26 10:32:36 -08:00

15 lines
451 B
Swift

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Cocoa
class AutoSaveWindowController: NSWindowController {
override func windowDidLoad() {
super.windowDidLoad()
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
self.windowFrameAutosaveName = NSWindow.FrameAutosaveName("AutoSaveWindow")
}
}