Commit 6aa70977 authored by Kainalu Hagiwara's avatar Kainalu Hagiwara Committed by Jeff Boek
Browse files

For #12861 - Swap order of tabs for tab switching gesture.

parent af020d0a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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
                }
            }