Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ private void showIconPackDialog() {

buildOptions();
})
.setNegativeButton("Cancel", null)
.show();
}

Expand All @@ -188,6 +189,7 @@ private void showFontDialog() {

buildOptions();
})
.setNegativeButton("Cancel", null)
.show();
}

Expand Down Expand Up @@ -221,7 +223,7 @@ public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
new AlertDialog.Builder(this)
.setTitle("Select Font Size")
.setView(layout)
.setPositiveButton("OK", (dialog, which) -> {
.setPositiveButton("Ok", (dialog, which) -> {
var selectedSize = 14 + seekBar.getProgress();
if (selectedSize == SettingsManager.getFontSize()) {
return;
Expand Down Expand Up @@ -255,6 +257,7 @@ private void showThemeDialog() {

buildOptions();
})
.setNegativeButton("Cancel", null)
.show();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static void setCharacterHeadings(boolean hasCharacterHeadings) {
}

public static boolean getCharacterHeadings() {
return sPrefs.getBoolean(KEY_CHARACTER_HEADINGS, false);
return sPrefs.getBoolean(KEY_CHARACTER_HEADINGS, true);
}

public static void setIconPack(String packageName) {
Expand Down