Small layout change

This commit is contained in:
M66B 2021-08-10 07:00:41 +02:00
parent b5580ad2e9
commit dc2525d37a
1 changed files with 2 additions and 2 deletions

View File

@ -628,7 +628,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
try {
int textColorLink = Helper.resolveColor(context, android.R.attr.textColorLink);
int colorSeparator = Helper.resolveColor(context, R.attr.colorSeparator);
int textColorSecondary = Helper.resolveColor(context, android.R.attr.textColorSecondary);
int colorWarning = Helper.resolveColor(context, R.attr.colorWarning);
if ("tel".equals(scheme)) {
@ -651,7 +651,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
ssb.setSpan(new StyleSpan(Typeface.BOLD),
index, index + scheme.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
} else
ssb.setSpan(new ForegroundColorSpan(colorSeparator),
ssb.setSpan(new ForegroundColorSpan(textColorSecondary),
index, index + scheme.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}