Skip to content

Commit

Permalink
fix: gesture setting is not displayed due to update compose library v…
Browse files Browse the repository at this point in the history
…ersion.
  • Loading branch information
plateaukao committed Apr 25, 2023
1 parent 31517a9 commit 5d14b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class SettingActivity : ComponentActivity(), KoinComponent {
gestureSettingItems,
dialogManager,
action,
1
2
)
}
composable(Backup.name) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class GestureHandler(
fun handle(gesture: GestureType) = when (gesture) {
GestureType.NothingHappen -> Unit
GestureType.Forward -> browserController.goForward()
GestureType.Backward -> browserController.handleBackKey()
GestureType.Backward -> browserController.handleBackKey()
GestureType.ScrollToTop -> browserController.jumpToTop()
GestureType.ScrollToBottom -> browserController.jumpToBottom()
GestureType.ToLeftTab -> browserController.gotoLeftTab()
Expand Down

0 comments on commit 5d14b24

Please sign in to comment.