| 123456789101112131415161718192021222324 |
- //
- // ViewController.swift
- // App for Indeed
- //
- // Created by Mql Mac 2 on 11/05/2026.
- //
- import Cocoa
- final class ViewController: DashboardViewController {
- private var didApplyDefaultWindowFrame = false
- override func viewDidAppear() {
- super.viewDidAppear()
- guard !didApplyDefaultWindowFrame, let window = view.window else { return }
- didApplyDefaultWindowFrame = true
- // Layout can grow the window after launch; re-apply once content is on screen.
- view.layoutSubtreeIfNeeded()
- AppWindowConfiguration.apply(to: window)
- window.center()
- }
- }
|