Skip to content

Commit

Permalink
Fix bottom navigation on non TV devices
Browse files Browse the repository at this point in the history
  • Loading branch information
morckx committed Jan 19, 2025
1 parent 64d7b94 commit 52f12b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public boolean isRunningOnTV() {
}

private boolean useBottomNavigation() {
return !isRunningOnTV() && sharedPref.getBoolean("use_bottom_navigation", false);
return !isRunningOnTV() && Utils.bottomNavigationEnabled(this);
}


Expand Down

0 comments on commit 52f12b7

Please sign in to comment.