From 4f1249512f775d48614a727563cbf458ada3eacd Mon Sep 17 00:00:00 2001 From: Casper Date: Fri, 28 Jan 2022 16:20:33 +0100 Subject: [PATCH] Enabled 100th octave smoothing --- lasp/tools/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lasp/tools/tools.py b/lasp/tools/tools.py index befb0fb..90a8be9 100644 --- a/lasp/tools/tools.py +++ b/lasp/tools/tools.py @@ -48,7 +48,7 @@ class SmoothingWidth(Enum): twelve = (12, '1/12th octave smoothing') twfo = (24, '1/24th octave smoothing') ftei = (48, '1/48th octave smoothing') -# hundred = (100, '1/100th octave smoothing') # useful for removing 'grass' + hundred = (100, '1/100th octave smoothing') # useful for removing 'grass' @staticmethod def fillComboBox(cb): @@ -69,7 +69,7 @@ class SmoothingWidth(Enum): class SmoothingType: - levels = 'l', 'Levels' + levels = 'l', 'Levels' # [dB] # tf = 'tf', 'Transfer function', ps = 'ps', '(Auto) powers'