Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions REAPERSCRIPT.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
[PATHS]
project_path = C:/Users/dooby/AppData/Roaming/REAPER/ProjectTemplates/DUB.rpp

[OPTIONS]
noise_reduction = False
volume_up_dubbers = False
sub_region = False
sub_item = False
split = False
normalize_dubbers = False
normalize_video = False
fix_check = False
render_audio = False
render_video = False
hide_reaper = False
subs_cleaner = False
add_track_for_subs = False

[SUBS]
subs_lang = Russыыыыыia

Binary file modified ReaperScript.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions ReaperScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
state='readonly',
width=13,
)
try:
if config['SUBS']['subs_lang'] in SUBS_LANGS_LIST:
menu.set(config['SUBS']['subs_lang'])
except KeyError:
else:
menu.set(SUBS_LANGS_LIST[0])
menu.place(relx=0.5, rely=1.0, anchor="s", x=9, y=-424)
ToolTip(menu, HELP_DICT['subs_lang'], 1)
Expand Down