mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-12 09:04:14 +02:00
15 lines
451 B
Swift
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")
|
|
}
|
|
}
|