Skip to content

Commit

Permalink
set WM_CLASS property
Browse files Browse the repository at this point in the history
  • Loading branch information
otvam committed Jan 10, 2025
1 parent 65919fc commit 91cc1b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pypeec/lib_plot/manage_plotgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ def __init__(self, plot_mode, folder, name):
import qtpy.QtWidgets

# create and assign a single instance
APPQT = qtpy.QtWidgets.QApplication([])
APPQT = qtpy.QtWidgets.QApplication(["pypeec"])
APPQT.setApplicationDisplayName("pypeec")
APPQT.setApplicationName("pypeec")
APPQT.setOrganizationName("pypeec")

# set the icon
filename = importlib.resources.files("pypeec.data").joinpath("pypeec.png")
Expand Down

0 comments on commit 91cc1b2

Please sign in to comment.