Esempio n. 1
0
 def _create_row_from_project(project: Project) -> List[QStandardItem]:
     item = QStandardItem(project.patch_path)
     item.setText(project.patch_path)
     item.setData(project)
     game_item = QStandardItem(project.get_game_name())
     language_item = QStandardItem(project.get_language_name())
     return [item, game_item, language_item]