Goggles age tint by default

This commit is contained in:
Mononaut
2024-04-04 11:22:57 +00:00
parent 896c451c3e
commit 7fbb93cf41
8 changed files with 14 additions and 9 deletions

View File

@@ -549,7 +549,9 @@ export class BlockOverviewGraphComponent implements AfterViewInit, OnDestroy, On
}
getColorFunction(): ((tx: TxView) => Color) {
if (this.filterFlags) {
if (this.overrideColors) {
return this.overrideColors;
} else if (this.filterFlags) {
return this.getFilterColorFunction(this.filterFlags, this.gradientMode);
} else if (this.activeFilterFlags) {
return this.getFilterColorFunction(this.activeFilterFlags, this.gradientMode);