Skip to content

Commit

Permalink
Merge pull request #184 from tatsuz0u/develop
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
tatsuz0u authored Nov 28, 2021
2 parents 01b5d04 + a8b74f1 commit d8712ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [closed]
env:
DEVELOPER_DIR: /Applications/Xcode_13.1.app
APP_VERSION: '1.5.0'
APP_VERSION: '1.5.1'
SCHEME_NAME: 'EhPanda'
ALTSTORE_JSON_PATH: './AltStore.json'
BUILDS_PATH: '/tmp/action-builds'
Expand Down
4 changes: 4 additions & 0 deletions EhPanda/App/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ extension UINavigationController: UIGestureRecognizerDelegate {
super.viewDidLoad()
interactivePopGestureRecognizer?.delegate = self
}
// Prevents above codes from blocking the slide menu
public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
viewControllers.count > 1
}
// Gives the swipe-back gesture a higher priority
public func gestureRecognizer(
_ gestureRecognizer: UIGestureRecognizer,
Expand Down

0 comments on commit d8712ad

Please sign in to comment.