Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #232 from slarosa/master
fix error in path for sextante icon
  • Loading branch information
timlinux committed Sep 14, 2012
2 parents 8241030 + 26a4340 commit 2f2fb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/console.py
Expand Up @@ -116,7 +116,7 @@ def __init__(self, parent=None):
self.loadSextanteButton = QAction(parent)
self.loadSextanteButton.setCheckable(False)
self.loadSextanteButton.setEnabled(True)
self.loadSextanteButton.setIcon(QIcon(os.path.dirname(__file__) + "iconConsole/iconSextanteConsole.png"))
self.loadSextanteButton.setIcon(QIcon(os.path.dirname(__file__) + "/iconConsole/iconSextanteConsole.png"))
self.loadSextanteButton.setMenuRole(QAction.PreferencesRole)
self.loadSextanteButton.setIconVisibleInMenu(True)
self.loadSextanteButton.setToolTip('Import sextante class')
Expand Down

0 comments on commit 2f2fb53

Please sign in to comment.