aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/operations/HistogramOperation.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-03-29 23:48:34 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-03-29 23:48:34 -0400
commit74e95e596d9876e90c294ade30df3d666d167139 (patch)
treea8d6fe3368f9f503bc0621de6c6c64ea0537ddc3 /src/client/northstar/operations/HistogramOperation.ts
parenta2e4321eb23bedda9b78f012d3eb061045c5b33c (diff)
fixed brush colors.
Diffstat (limited to 'src/client/northstar/operations/HistogramOperation.ts')
-rw-r--r--src/client/northstar/operations/HistogramOperation.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/northstar/operations/HistogramOperation.ts b/src/client/northstar/operations/HistogramOperation.ts
index 4689cb233..e63de1632 100644
--- a/src/client/northstar/operations/HistogramOperation.ts
+++ b/src/client/northstar/operations/HistogramOperation.ts
@@ -116,7 +116,7 @@ export class HistogramOperation extends BaseOperation implements IBaseFilterCons
@action
public async Update(): Promise<void> {
- //this.BrushColors = this.BrushLinks.map(e => e.l.GetNumber(KeyStore.BackgroundColor, 0));
+ this.BrushColors = this.BrushLinks.map(e => e.l.GetNumber(KeyStore.BackgroundColor, 0));
return super.Update();
}
}