mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
use the selected navigation bar color if the tab holder isnt visible
This commit is contained in:
@ -463,7 +463,12 @@ class MainActivity : SimpleActivity() {
|
||||
updateBottomTabItemColors(inactiveView, false)
|
||||
}
|
||||
|
||||
val bottomBarColor = getBottomNavigationBackgroundColor()
|
||||
val bottomBarColor = if (main_tabs_holder.isGone()) {
|
||||
config.navigationBarColor
|
||||
} else {
|
||||
getBottomNavigationBackgroundColor()
|
||||
}
|
||||
|
||||
main_tabs_holder.setBackgroundColor(bottomBarColor)
|
||||
updateNavigationBarColor(bottomBarColor)
|
||||
}
|
||||
|
Reference in New Issue
Block a user