Skip to content

Commit

Permalink
4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Captain-FLAM committed Oct 24, 2023
1 parent aa57674 commit 8154e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gui/Notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def Label(text, index, short = False):
input_path = widgets.Text(config['AUDIO']['input'], continuous_update=True, layout = {'width':'310px'}, style=font_input)
normalize = widgets.Dropdown(value = config['AUDIO']['normalize'], options = App.settings.Options['Normalize'], layout = {'width':'70px'}, style=font_input)
output_path = widgets.Text(config['AUDIO']['output'], continuous_update=True, layout = {'width':'310px'}, style=font_input)
output_format = widgets.Dropdown(value = config['AUDIO']['output_format'], options = App.settings.Options['Output_format'], layout = {'width':'153px'}, style=font_input)
output_format = widgets.Dropdown(value = config['AUDIO']['output_format'], options = App.settings.Options['Output_format'], layout = {'width':('145px' if isColab else '153px')}, style=font_input)
silent = widgets.Dropdown(value = config['AUDIO']['silent'], options = App.settings.Options['Silent'], layout = {'width':'100px'}, style=font_input)
infra_bass = widgets.Checkbox((config['AUDIO']['infra_bass'].lower() == "true"), indent=False, style=font_input, layout=checkbox_layout)
# PROCESS
Expand Down

0 comments on commit 8154e9a

Please sign in to comment.