1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-04 02:28:18 +00:00

Use magenta for misspelled

This commit is contained in:
M66B 2023-11-03 20:46:14 +01:00
parent eafb398e01
commit ad8b7d3fac

View file

@ -52,7 +52,7 @@ public class SuggestionSpanEx extends SuggestionSpan {
this.description = description;
highlightColor = Helper.resolveColor(context, android.R.attr.textColorHighlight);
underlineColor = (BuildConfig.DEBUG ? Color.MAGENTA : (misspelled ? Color.RED : highlightColor));
underlineColor = (misspelled ? Color.MAGENTA : highlightColor);
underlineThickness = Helper.dp2pixels(context, misspelled ? 2 : (BuildConfig.DEBUG ? 1 : 2));
}