1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-30 08:36:54 +02:00
focalboard/mac/Tasks/AutoSaveWindowController.swift
2020-10-26 12:45:40 -07:00

19 lines
431 B
Swift

//
// AutoSaveWindowController.swift
// Tasks
//
// Created by Chen-I Lim on 10/8/20.
//
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")
}
}