fix: Flex with multiple slices opened was always showing slice A s-meter.

This commit is contained in:
2026-07-10 23:13:06 +02:00
parent 6c39204301
commit 73f3ec51f7
10 changed files with 192 additions and 15 deletions
+2
View File
@@ -504,6 +504,7 @@ export namespace cat {
src?: string;
name?: string;
unit?: string;
slice: number;
value: number;
lo: number;
hi: number;
@@ -518,6 +519,7 @@ export namespace cat {
this.src = source["src"];
this.name = source["name"];
this.unit = source["unit"];
this.slice = source["slice"];
this.value = source["value"];
this.lo = source["lo"];
this.hi = source["hi"];