diff --git a/app/src/main/java/eu/kanade/presentation/reader/appbars/BottomReaderBar.kt b/app/src/main/java/eu/kanade/presentation/reader/appbars/BottomReaderBar.kt index f776ba2be..bba0174b3 100644 --- a/app/src/main/java/eu/kanade/presentation/reader/appbars/BottomReaderBar.kt +++ b/app/src/main/java/eu/kanade/presentation/reader/appbars/BottomReaderBar.kt @@ -92,6 +92,15 @@ fun BottomReaderBar( } } + if (ReaderBottomButton.Rotation.isIn(enabledButtons)) { + IconButton(onClick = onClickOrientation) { + Icon( + painter = painterResource(orientation.iconRes), + contentDescription = stringResource(R.string.pref_rotation_type), + ) + } + } + val cropBorders = when (readingMode) { ReadingMode.WEBTOON -> ReaderBottomButton.CropBordersWebtoon ReadingMode.CONTINUOUS_VERTICAL -> ReaderBottomButton.CropBordersContinuesVertical @@ -106,15 +115,6 @@ fun BottomReaderBar( } } - if (ReaderBottomButton.Rotation.isIn(enabledButtons)) { - IconButton(onClick = onClickOrientation) { - Icon( - painter = painterResource(orientation.iconRes), - contentDescription = stringResource(R.string.pref_rotation_type), - ) - } - } - if ( !dualPageSplitEnabled && ReaderBottomButton.PageLayout.isIn(enabledButtons) &&