Enable hiding toolbar for new installations

This commit is contained in:
M66B
2024-05-24 12:29:25 +02:00
parent b3bf0b7eb4
commit ecfc14f044
3 changed files with 5 additions and 2 deletions

View File

@@ -1563,7 +1563,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
tvColumnWidth.setText(getString(R.string.title_advanced_column_width, NF.format(column_width)));
sbColumnWidth.setProgress(column_width);
swHideToolbar.setChecked(prefs.getBoolean("hide_toolbar", !BuildConfig.PLAY_STORE_RELEASE));
swHideToolbar.setChecked(prefs.getBoolean("hide_toolbar", true));
swEdgeToEdge.setChecked(prefs.getBoolean("edge_to_edge", false));
swNavOptions.setChecked(prefs.getBoolean("nav_options", true));
swNavCategories.setChecked(prefs.getBoolean("nav_categories", false));