commit 026f57a94251301c1f44afc99c5a23f4b93b0785
parent a778fa5d41f46c3bfbed9a706cdca64b25c43a5b
Author: gearsix <gearsix@tuta.io>
Date: Fri, 18 Nov 2022 21:55:37 +0000
bugfix: _init_options_output was using the wrong label
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sya-pyqt.py b/sya-pyqt.py
@@ -217,7 +217,7 @@ class SyaGui(qtwidg.QMainWindow):
return self.optionsQuality
def _init_options_output(self):
- label = self.tracklistLabel
+ label = self.outputLabel
layout, self.optionsOutput = sya_gui_filepicker(self.options, label, self.select_output, self.set_output, self.optionsValue[label], 'folder')
return layout