Small improvement

This commit is contained in:
M66B 2024-04-27 07:35:31 +02:00
parent dd6e85cee2
commit 6bff3e1349
1 changed files with 3 additions and 0 deletions

View File

@ -116,6 +116,9 @@ public class FragmentDialogPwned extends FragmentDialogBase {
if (pwned) {
ssb.setSpan(new ForegroundColorSpan(colorError), start, ssb.length(), 0);
ssb.setSpan(new StyleSpan(Typeface.BOLD), start, ssb.length(), 0);
ssb.append(' ').append(Integer.toString(count)).append('×');
if (BuildConfig.DEBUG)
ssb.append(' ').append(password);
} else
ssb.setSpan(new ForegroundColorSpan(colorVerified), start, ssb.length(), 0);
}