Fix JS File Path Variable

Corrected Path variable for button_titles.js file to proper formatting/usage.
This commit is contained in:
roamindev
2023-04-11 19:30:53 -04:00
parent eb94a0937f
commit 40e1de2c52

View File

@@ -129,7 +129,7 @@ def write_resolutions_file(filename):
def write_js_titles_file(button_titles):
filename = Path(aspect_ratios_dir + "\\javascript\\", "button_titles.js")
filename = Path(aspect_ratios_dir, "javascript", "button_titles.js")
content = ["// Do not put custom titles here. This file is overwritten each time the WebUI is started.\n"]
content.append("ar_button_titles = {\n")
counter = 0