Skip to content

Commit 1d105b4

Browse files
authored
FEAT: Update images (#72)
1 parent ac69b82 commit 1d105b4

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed

frozen.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if not os.path.isfile(main_py):
2626
raise FileNotFoundError(f'Unable to locate main entrypoint at {main_py}')
2727

2828
added_files = [
29-
(os.path.join(ASSETS_PATH, 'pyansys-light-crop.png'), 'assets'),
29+
(os.path.join(ASSETS_PATH, 'pyansys-light.png'), 'assets'),
3030
(os.path.join(ASSETS_PATH, 'ansys-favicon.png'), 'assets'),
3131
(os.path.join(ASSETS_PATH, 'pyansys_icon.ico'), 'assets'),
3232
(os.path.join(INSTALLER_PATH, 'VERSION'), '.'),

images/app-image.png

-11.9 KB
Loading
-9.45 KB
Loading
-7.22 KB
Loading
-6.18 KB
Loading
-445 Bytes
Binary file not shown.

src/ansys/tools/installer/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def __init__(self, show=True):
103103

104104
# Header icon
105105
self.menu_heading = ImageWidget()
106-
pixmap = QtGui.QPixmap(os.path.join(ASSETS_PATH, "pyansys-light-crop.png"))
106+
pixmap = QtGui.QPixmap(os.path.join(ASSETS_PATH, "pyansys-light.png"))
107107
self.menu_heading.setPixmap(pixmap)
108108
header_layout.addWidget(self.menu_heading)
109109

0 commit comments

Comments
 (0)