rename to

This commit is contained in:
Jon Rohan
2013-02-01 12:59:57 -05:00
parent 44cd412bd8
commit 2788ee2715
39 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ _.extend atom,
.filter (name) -> not _.contains(disabledPackages, name)
loadThemes: ->
themeNames = config.get("core.themes") ? ['atom-ui-dark', 'atom-syntax-dark']
themeNames = config.get("core.themes") ? ['atom-dark-ui', 'atom-dark-syntax']
themeNames = [themeNames] unless _.isArray(themeNames)
@loadTheme(themeName) for themeName in themeNames
@loadUserStylesheet()
@@ -64,7 +64,7 @@ _.extend atom,
applyStylesheet(userStylesheetPath, fs.read(userStylesheetPath), 'userTheme')
getAtomThemeStylesheets: ->
themeNames = config.get("core.themes") ? ['atom-ui-dark', 'atom-syntax-dark']
themeNames = config.get("core.themes") ? ['atom-dark-ui', 'atom-dark-syntax']
themeNames = [themeNames] unless _.isArray(themeNames)
open: (args...) ->