From 6c146a9021cbfd01dc27100e965b860ff9624dca Mon Sep 17 00:00:00 2001 From: Mark Rickert Date: Wed, 7 Aug 2013 08:53:37 -0400 Subject: [PATCH] Fix typo - LSApplicationCategoryType --- lib/motion/project/template/osx/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/template/osx/config.rb b/lib/motion/project/template/osx/config.rb index e4ea86b3..c8c336fc 100644 --- a/lib/motion/project/template/osx/config.rb +++ b/lib/motion/project/template/osx/config.rb @@ -112,7 +112,7 @@ module Motion; module Project; 'NSPrincipalClass' => 'NSApplication', 'CFBundleIconFile' => (icon or ''), 'LSMinimumSystemVersion' => deployment_target, - 'LSMinimumSystemVersion' => (@category.start_with?('public.app-category') ? @category : 'public.app-category.' + @category) + 'LSApplicationCategoryType' => (@category.start_with?('public.app-category') ? @category : 'public.app-category.' + @category) }.merge(generic_info_plist).merge(dt_info_plist).merge(info_plist)) end