feat navigation: style checkboxes in navigation

feat preferences: Show Hidden Files and Show Directories First options working
This commit is contained in:
Mahdi Dibaiee
2015-09-04 05:35:14 +04:30
parent 0ae06a77ae
commit 100dc03813
15 changed files with 745 additions and 263 deletions

View File

@ -0,0 +1,8 @@
import { SETTINGS } from 'actions/types';
export default function(props) {
return {
type: SETTINGS,
...props
}
}

View File

@ -20,6 +20,8 @@ const TYPES = {
DIALOG: Symbol('DEBUG'),
SETTINGS: Symbol('SETTINGS'),
SEARCH: Symbol('SEARCH')
};