mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-12 03:17:53 +00:00
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.
This commit is contained in:
@@ -60,8 +60,6 @@ public class PassphraseTimeoutPreference extends DialogPreference {
|
||||
// Can't figure out how to style a DialogPreference.
|
||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
|
||||
this.timeoutText.setTextColor(Color.parseColor("#cccccc"));
|
||||
} else {
|
||||
this.timeoutText.setTextColor(Color.parseColor("#000000"));
|
||||
}
|
||||
|
||||
initializeDefaults();
|
||||
|
Reference in New Issue
Block a user