Renaming themes to lowercase-dashes.

This commit is contained in:
Jon Rohan
2013-01-31 19:48:32 -05:00
parent c2af8712d1
commit 194675b8c3
39 changed files with 1 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ _.extend atom,
.filter (name) -> not _.contains(disabledPackages, name)
loadThemes: ->
themeNames = config.get("core.themes") ? ['Atom - Dark', 'GitHub_Dark']
themeNames = config.get("core.themes") ? ['atom-dark', 'github-dark']
themeNames = [themeNames] unless _.isArray(themeNames)
@loadTheme(themeName) for themeName in themeNames
@loadUserStylesheet()