Skip to content

Commit

Permalink
Fix Xcode 13 build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
duraidabdul committed Sep 20, 2022
1 parent 63ebc8e commit 3ffdde8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LocalConsole/LCManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public class LCManager: NSObject, UIGestureRecognizerDelegate {

/// Gesture endpoints. Each point represents a corner of the screen. TODO: Handle screen rotation.
var possibleEndpoints: [CGPoint] {
guard let consoleWindow else { return [] }
guard let consoleWindow = consoleWindow else { return [] }

let screenSize = viewController.view.frame.size

Expand Down

0 comments on commit 3ffdde8

Please sign in to comment.