Skip to content

Commit

Permalink
Use Pathlib
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomer Shalev committed Jan 18, 2024
1 parent f154a75 commit ddbf3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dymoprint/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self):

def init_elements(self):
self.setWindowTitle("DymoPrint GUI")
self.setWindowIcon(QIcon(str(ICON_DIR / "gui_icon.png")))
self.setWindowIcon(QIcon(str(ICON_DIR.joinpath("gui_icon.png"))))
self.setGeometry(200, 200, 1100, 400)
self.error_label.setAlignment(Qt.AlignmentFlag.AlignRight)
printer_icon = QIcon.fromTheme("printer")
Expand Down

0 comments on commit ddbf3f2

Please sign in to comment.