From 7359101bac425b81887b652fed7a773cdca189ed Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 10 Apr 2013 18:56:14 -0600 Subject: [PATCH] Add core.hideGitIgnoredFiles option --- src/app/general-config-panel.coffee | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/general-config-panel.coffee b/src/app/general-config-panel.coffee index f1b2a18a2..480090257 100644 --- a/src/app/general-config-panel.coffee +++ b/src/app/general-config-panel.coffee @@ -5,5 +5,9 @@ class GeneralConfigPanel extends ConfigPanel @content: -> @div class: 'config-panel', => @div class: 'row', => - @label for: 'core.autosave', "Autosave on Unfocus:" + @label for: 'core.hideGitIgnoredFiles', "Hide files in .gitignore:" + @input id: 'core.hideGitIgnoredFiles', type: 'checkbox' + + @div class: 'row', => + @label for: 'core.autosave', "Autosave on unfocus:" @input id: 'core.autosave', type: 'checkbox'