Decrease unselected igc underline to 20% opacity (#4214)

This commit is contained in:
Kelrap 2025-10-01 13:59:13 -04:00 committed by GitHub
parent f9d3e5e473
commit 171dc55242
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -134,7 +134,7 @@ class PangeaMatch {
) {
double opacityFactor = 1.0;
if (openMatchIndex != null && openMatchIndex != matchIndex) {
opacityFactor = 0.5;
opacityFactor = 0.2;
}
final int alpha = (255 * opacityFactor).round();