Skip to content

Commit 45f4faa

Browse files
committed
Fix for timeout interval bug
Regardless of which theme is used, the text color for the timeout interval was being set to black. This made it difficult to read when using the Dark Theme.
1 parent f58f79a commit 45f4faa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/org/thoughtcrime/securesms/preferences/PassphraseTimeoutPreference.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ protected View onCreateDialogView() {
6060
// Can't figure out how to style a DialogPreference.
6161
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
6262
this.timeoutText.setTextColor(Color.parseColor("#cccccc"));
63-
} else {
64-
this.timeoutText.setTextColor(Color.parseColor("#000000"));
6563
}
6664

6765
initializeDefaults();

0 commit comments

Comments
 (0)