We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91e6898 commit 07c1a97Copy full SHA for 07c1a97
2 files changed
GridGuide/GridGuideApp.swift
@@ -42,7 +42,7 @@ struct GridGuideApp: App {
42
class AppDelegate: NSObject, NSApplicationDelegate {
43
private var statusItem: NSStatusItem!
44
private var valueLabel: NSTextField!
45
- @objc dynamic var gridSize: Double = 50 {
+ @objc dynamic var gridSize: Double = 60 {
46
didSet {
47
NotificationCenter.default.post(
48
name: NSNotification.Name("gridSizeChanged"),
GridGuide/GridGuideView.swift
@@ -9,7 +9,7 @@ import SwiftUI
9
import AppKit
10
11
struct GridGuideView: View {
12
- @State private var gridSize: Int = 50
+ @State private var gridSize: Int = 60
13
let screenWidth = NSScreen.main?.visibleFrame.width ?? 1440
14
let screenHeight = NSScreen.main?.visibleFrame.height ?? 900
15
0 commit comments