Skip to content

Commit 07c1a97

Browse files
committed
set default grid size to 60
1 parent 91e6898 commit 07c1a97

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

GridGuide/GridGuideApp.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct GridGuideApp: App {
4242
class AppDelegate: NSObject, NSApplicationDelegate {
4343
private var statusItem: NSStatusItem!
4444
private var valueLabel: NSTextField!
45-
@objc dynamic var gridSize: Double = 50 {
45+
@objc dynamic var gridSize: Double = 60 {
4646
didSet {
4747
NotificationCenter.default.post(
4848
name: NSNotification.Name("gridSizeChanged"),

GridGuide/GridGuideView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import SwiftUI
99
import AppKit
1010

1111
struct GridGuideView: View {
12-
@State private var gridSize: Int = 50
12+
@State private var gridSize: Int = 60
1313
let screenWidth = NSScreen.main?.visibleFrame.width ?? 1440
1414
let screenHeight = NSScreen.main?.visibleFrame.height ?? 900
1515

0 commit comments

Comments
 (0)