Skip to content

Commit 6849029

Browse files
authored
Merge pull request #44 from pshriwise/fix_splash
Fixing splash screen and application logo.
2 parents 64a4e5b + f77b89f commit 6849029

4 files changed

Lines changed: 3 additions & 2 deletions

File tree

openmc_plotter/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
from .main_window import MainWindow, _openmcReload
1212

1313
def main():
14-
path_icon = str(Path(__file__).parent.parent / 'assets/openmc_logo.png')
15-
path_splash = str(Path(__file__).parent.parent / 'assets/splash.png')
14+
path_icon = str(Path(__file__).parent / 'assets/openmc_logo.png')
15+
path_splash = str(Path(__file__).parent / 'assets/splash.png')
1616

1717
app = QApplication(sys.argv)
1818
app.setOrganizationName("OpenMC")

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
'name': 'openmc-plotter',
55
'version': '0.1.0',
66
'packages': ['openmc_plotter'],
7+
'package_data': {'openmc_plotter' : ['assets/*.png']},
78
'entry_points': {
89
'console_scripts': [
910
'openmc-plotter=openmc_plotter.__main__:main'

0 commit comments

Comments
 (0)