Skip to content

Commit

Permalink
fix missing qml list in "list all"
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquetc committed Jan 19, 2024
1 parent a28da52 commit cbfcbfa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/qleany/generator/qleany_generator_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,8 @@ def list_all(self):
list.extend(
application_generator.get_files_to_be_generated(self.temp_manifest_file)
)
list.extend(qml_generator.get_files_to_be_generated(self.temp_manifest_file))
self.text_box.clear()
self.text_box.setPlainText("All files:\n\n")
self.text_box.appendPlainText("\n".join(list))
self.file_list_view.list_files(list)
Expand Down

0 comments on commit cbfcbfa

Please sign in to comment.