Skip to content

Commit

Permalink
ENH: add more icons to the GUI
Browse files Browse the repository at this point in the history
Related #152
  • Loading branch information
mauigna06 committed Oct 1, 2024
1 parent 7d60e61 commit 42bee95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions BoneReconstructionPlanner/BoneReconstructionPlanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,12 @@ def setup(self):
openDocumentationIconPath = os.path.join(os.path.dirname(__file__), 'Resources/Icons/quick_reference_48.svg')
self.ui.openDocumentationButton.setIcon(qt.QIcon(openDocumentationIconPath))

boneIconPath = os.path.join(os.path.dirname(__file__), 'Resources/Icons/bone_48.svg')
self.ui.makeModelsButton.setIcon(qt.QIcon(boneIconPath))

targetIconPath = os.path.join(os.path.dirname(__file__), 'Resources/Icons/target_48.svg')
self.ui.centerFibulaLineButton.setIcon(qt.QIcon(targetIconPath))

recycleIconPath = os.path.join(os.path.dirname(__file__), 'Resources/Icons/recycle_48.svg')
self.ui.hardVSPUpdateButton.setIcon(qt.QIcon(recycleIconPath))

Expand Down
1 change: 1 addition & 0 deletions BoneReconstructionPlanner/Resources/Icons/bone_48.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions BoneReconstructionPlanner/Resources/Icons/target_48.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 42bee95

Please sign in to comment.