Missed a rename of _write_theme to save_theme.

This commit is contained in:
Tomas Groth 2019-06-11 21:11:54 +02:00
parent 4f705a649a
commit 9966d8ace7
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class ThemeManager(QtWidgets.QWidget, RegistryBase, Ui_ThemeManager, LogMixin, R
for xml_file_path in xml_file_paths:
theme_data = get_text_file_string(xml_file_path)
theme = self._create_theme_from_xml(theme_data, self.theme_path)
self._write_theme(theme)
self.save_theme(theme)
xml_file_path.unlink()
def build_theme_path(self):