We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4edd5d7 commit a883642Copy full SHA for a883642
app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MainActivity.kt
@@ -463,7 +463,12 @@ class MainActivity : SimpleActivity() {
463
updateBottomTabItemColors(inactiveView, false)
464
}
465
466
- val bottomBarColor = getBottomNavigationBackgroundColor()
+ val bottomBarColor = if (main_tabs_holder.isGone()) {
467
+ config.navigationBarColor
468
+ } else {
469
+ getBottomNavigationBackgroundColor()
470
+ }
471
+
472
main_tabs_holder.setBackgroundColor(bottomBarColor)
473
updateNavigationBarColor(bottomBarColor)
474
0 commit comments