Skip to content

Commit

Permalink
fix(profile model): use name and not alias because we use the value t…
Browse files Browse the repository at this point in the history
…o get the folder
  • Loading branch information
jmkerloch committed Sep 12, 2024
1 parent d14e7dc commit fcdd189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userInterface/mdl_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def insert_profile(self, profile_name: str) -> None:
if profile:
row = self.rowCount()
self.insertRow(row)
self.setData(self.index(row, self.NAME_COL), profile.alias())
self.setData(self.index(row, self.NAME_COL), profile.name())
self.setData(
self.index(row, self.NAME_COL), profile.icon(), Qt.DecorationRole
)
Expand Down

0 comments on commit fcdd189

Please sign in to comment.