Skip to content

Commit

Permalink
fix icon path after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
cbusillo committed Jun 12, 2024
1 parent bfb2628 commit 86b58a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bd_to_avp/gui/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def load_app_info_from_pyproject(app: QApplication) -> None:

briefcase_icon_path = Path(briefcase.get("icon"))
icon_path = Path(*briefcase_icon_path.parts[1:]).with_suffix(".icns")
icon_absolute_path = Path(__file__).parent / icon_path
icon_absolute_path = Path(__file__).parent.parent / icon_path
app.setWindowIcon(QIcon(icon_absolute_path.as_posix()))

app.setProperty("authors", poetry.get("authors", []))
Expand Down

0 comments on commit 86b58a2

Please sign in to comment.