Skip to content

Commit a206948

Browse files
authored
Merge pull request #30 from DoobyDouglas/develop
3.28
2 parents d8cb331 + c59192a commit a206948

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ReaperScript.exe

2 Bytes
Binary file not shown.

ReaperScript.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ def reaper_main(
119119
project.save(False)
120120
if get_option('normalize_dubbers') and get_option('normalize_video'):
121121
normalize(project, 'all')
122-
if get_option('normalize_dubbers'):
122+
elif get_option('normalize_dubbers'):
123123
normalize(project, 'dubbers')
124-
if get_option('normalize_video'):
124+
elif get_option('normalize_video'):
125125
normalize(project, 'video')
126126
back_up(project, new_path)
127127
if get_option('fix_check'):
@@ -156,7 +156,7 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
156156
master = tkinter.Tk(className='REAPERSCRIPT.main')
157157
master.geometry(set_geometry(master))
158158
master.resizable(False, False)
159-
master.title('REAPERSCRIPT v3.27')
159+
master.title('REAPERSCRIPT v3.28')
160160
master.iconbitmap(default=resource_path('ico.ico'))
161161
master.protocol('WM_DELETE_WINDOW', on_closing)
162162
style = ttk.Style()

0 commit comments

Comments
 (0)