Skip to content

Commit

Permalink
fix: Fix color schemes names inside configuration popup
Browse files Browse the repository at this point in the history
  • Loading branch information
equinusocio committed Nov 8, 2016
1 parent 664ce96 commit 2e703d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ def show_popup(self, menu):
popup.append(SCHEME_LABEL)
for option in sorted(mt_schemes):
option_value = scheme == option
#scheme_name = option[32:].replace('/', ' ⚠️ ')
scheme_name = option[32:].replace('.tmTheme', '')
popup.append(
SCHEME % {
'name': option,
'name': scheme_name,
'status': RADIO_MARKED if option_value else RADIO_UNMARKED,
'set': option,
'class': '.success' if option_value else '.error',
Expand Down

0 comments on commit 2e703d7

Please sign in to comment.