Skip to content

Commit

Permalink
Merge pull request #407 from EhPanda-Team/develop
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
chihchy authored Dec 21, 2024
2 parents e28fec8 + 4c7e9ff commit e108284
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
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_16.2.app
APP_VERSION: '2.7.9'
APP_VERSION: '2.7.10'
SCHEME_NAME: 'EhPanda'
ALTSTORE_JSON_PATH: './AltStore.json'
BUILDS_PATH: '/tmp/action-builds'
Expand Down
6 changes: 5 additions & 1 deletion EhPanda/View/Reading/ReadingView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ struct ReadingView: View {
}
.scaleEffect(gestureHandler.scale, anchor: gestureHandler.scaleAnchor)
.offset(gestureHandler.offset)
.highPriorityGesture(dragGesture.simultaneously(with: tapGesture))
.highPriorityGesture(
dragGesture.simultaneously(with: tapGesture),
isEnabled: gestureHandler.scale > 1
)
.gesture(tapGesture, isEnabled: gestureHandler.scale == 1)
.gesture(magnificationGesture)
.ignoresSafeArea()
.id(store.databaseLoadingState)
Expand Down

0 comments on commit e108284

Please sign in to comment.