Loading app/src/main/java/org/mozilla/fenix/browser/ToolbarGestureHandler.kt +4 −4 Original line number Diff line number Diff line Loading @@ -180,14 +180,14 @@ class ToolbarGestureHandler( val sessions = sessionManager.sessionsOfType(currentSession.private) val index = when (gestureDirection) { GestureDirection.RIGHT_TO_LEFT -> if (isLtr) { currentIndex + 1 } else { currentIndex - 1 } else { currentIndex + 1 } GestureDirection.LEFT_TO_RIGHT -> if (isLtr) { currentIndex - 1 } else { currentIndex + 1 } else { currentIndex - 1 } } Loading Loading
app/src/main/java/org/mozilla/fenix/browser/ToolbarGestureHandler.kt +4 −4 Original line number Diff line number Diff line Loading @@ -180,14 +180,14 @@ class ToolbarGestureHandler( val sessions = sessionManager.sessionsOfType(currentSession.private) val index = when (gestureDirection) { GestureDirection.RIGHT_TO_LEFT -> if (isLtr) { currentIndex + 1 } else { currentIndex - 1 } else { currentIndex + 1 } GestureDirection.LEFT_TO_RIGHT -> if (isLtr) { currentIndex - 1 } else { currentIndex + 1 } else { currentIndex - 1 } } Loading