fix peak in watch levels

fix peak in watch levels
This commit is contained in:
onyx-and-iris
2022-04-13 07:21:30 +01:00
parent 488a69451f
commit 3c1abdd2ac
2 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@ class GainLayer(ttk.LabelFrame):
]
),
)
peak = vals[0] if vals[0] > vals[1] else vals[0]
peak = vals[0] if vals[0] > vals[1] else vals[1]
self.level.set(
(
0