1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-15 09:14:11 +02:00
focalboard/mac/Focalboard/AutoSaveWindowController.swift

15 lines
451 B
Swift
Raw Normal View History

2021-01-26 20:32:36 +02:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2020-10-26 21:45:40 +02:00
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")
}
}