mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 04:01:58 +01:00
Group mode dialogs together in bottom reader bar
This commit is contained in:
parent
9e67abcc8a
commit
3a8aa3e8cd
1 changed files with 7 additions and 7 deletions
|
@ -46,6 +46,13 @@ fun BottomReaderBar(
|
|||
)
|
||||
}
|
||||
|
||||
IconButton(onClick = onClickOrientation) {
|
||||
Icon(
|
||||
painter = painterResource(orientation.iconRes),
|
||||
contentDescription = stringResource(R.string.rotation_type),
|
||||
)
|
||||
}
|
||||
|
||||
IconButton(onClick = onClickCropBorder) {
|
||||
Icon(
|
||||
painter = painterResource(if (cropEnabled) R.drawable.ic_crop_24dp else R.drawable.ic_crop_off_24dp),
|
||||
|
@ -53,13 +60,6 @@ fun BottomReaderBar(
|
|||
)
|
||||
}
|
||||
|
||||
IconButton(onClick = onClickOrientation) {
|
||||
Icon(
|
||||
painter = painterResource(orientation.iconRes),
|
||||
contentDescription = stringResource(R.string.pref_rotation_type),
|
||||
)
|
||||
}
|
||||
|
||||
IconButton(onClick = onClickSettings) {
|
||||
Icon(
|
||||
imageVector = Icons.Outlined.Settings,
|
||||
|
|
Loading…
Reference in a new issue