Skip to content

Commit

Permalink
Remove 'color_disabled' from icon manager
Browse files Browse the repository at this point in the history
  • Loading branch information
isabela-pf committed Jul 23, 2021
1 parent bcbd8ad commit 8cd019f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spyder/utils/icon_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ def __init__(self):
'stop_debug': [('mdi.stop',), {'color': SpyderPalette.ICON_2}],
'run': [('mdi.play',), {'color': SpyderPalette.ICON_3}],
'todo_list': [('mdi.check-bold',), {'color': self.MAIN_FG_COLOR}],
'wng_list': [('mdi.alert',), {'options': [{'color': SpyderPalette.COLOR_WARN_2, 'color_disabled': QStylePalette.COLOR_TEXT_4}]}],
'prev_wng': [('mdi.arrow-left',), {'options': [{'color': SpyderPalette.ICON_1, 'color_disabled': QStylePalette.COLOR_TEXT_4}]}],
'next_wng': [('mdi.arrow-right',), {'options': [{'color': SpyderPalette.ICON_1, 'color_disabled': QStylePalette.COLOR_TEXT_4}]}],
'wng_list': [('mdi.alert',), {'options': [{'color': SpyderPalette.COLOR_WARN_2}]}],
'prev_wng': [('mdi.arrow-left',), {'options': [{'color': SpyderPalette.ICON_1}]}],
'next_wng': [('mdi.arrow-right',), {'options': [{'color': SpyderPalette.ICON_1}]}],
'prev_cursor': [('mdi.hand-pointing-left',), {'color': self.MAIN_FG_COLOR}],
'next_cursor': [('mdi.hand-pointing-right',), {'color': self.MAIN_FG_COLOR}],
'comment': [('mdi.comment-text-outline',), {'color': self.MAIN_FG_COLOR}],
Expand Down

0 comments on commit 8cd019f

Please sign in to comment.