Skip to content

Commit

Permalink
fix(hex_colorname): fixed hex_convert_to_colorname capitalization issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
obetame committed Apr 26, 2018
1 parent 658a6cb commit 80ff688
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,7 @@
# CHANGELOG

- 2.1.0 (2018/4/25)
- add feature (`hex_convert_to_colorname`)

- 2.0.2 (2018/4/7)
- release in [packagecontrol.io](https://packagecontrol.io/packages/Color%20Convert)
2 changes: 1 addition & 1 deletion ColorConvert.py
Expand Up @@ -151,7 +151,7 @@ def covertColorName(self):
for i, output in enumerate(outputs):
for j, region in enumerate(regions):
if i == j and not region.empty():
self.view.replace(self.edit, region, output)
self.view.replace(self.edit, region, output.lower())

def loadSettings():
"""Loads settings from the ColorConvert.sublime-settings file"""
Expand Down

0 comments on commit 80ff688

Please sign in to comment.