set bottom toolbar to show by default

This commit is contained in:
Justin Biggs 2019-06-10 22:11:14 -05:00
parent a43e631de0
commit 91707d6fa2
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ public class SharedPreferenceUtil {
}
public boolean getPrefBottomToolbar() {
return sharedPreferences.getBoolean(PREF_BOTTOM_TOOLBAR, false);
return sharedPreferences.getBoolean(PREF_BOTTOM_TOOLBAR, true);
}
public boolean getPrefBackToTop() {

View File

@ -28,7 +28,7 @@
android:title="@string/pref_hidetoolbar"/>
<org.kiwix.kiwixmobile.settings.CustomSwitchPreference
android:defaultValue="false"
android:defaultValue="true"
android:key="pref_bottomtoolbar"
android:summary="@string/pref_bottomtoolbar_summary"
android:title="@string/pref_bottomtoolbar"/>