Classification log type color

This commit is contained in:
M66B
2021-08-16 10:32:53 +02:00
parent 8cbe086a43
commit 48c62807a1

View File

@@ -89,6 +89,9 @@ public class AdapterLog extends RecyclerView.Adapter<AdapterLog.ViewHolder> {
case Protocol:
ssb.setSpan(new ForegroundColorSpan(textColorSecondary), 0, ssb.length(), 0);
break;
case Classification:
ssb.setSpan(new ForegroundColorSpan(colorAccent), 0, ssb.length(), 0);
break;
}
tvData.setText(ssb);
}