From 27d0a7f37d24a0ad68a8ccb7dee18fc1d00eea58 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Tue, 7 May 2019 20:50:19 +0900 Subject: Use search settings on paster --- src/content/reducers/setting.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/content/reducers') diff --git a/src/content/reducers/setting.ts b/src/content/reducers/setting.ts index a3dc3aa..9ca1380 100644 --- a/src/content/reducers/setting.ts +++ b/src/content/reducers/setting.ts @@ -1,20 +1,20 @@ import * as actions from '../actions'; import * as keyUtils from '../../shared/utils/keys'; import * as operations from '../../shared/operations'; -import { Properties } from '../../shared/Settings'; +import { Search, Properties, DefaultSetting } from '../../shared/Settings'; export interface State { keymaps: { key: keyUtils.Key[], op: operations.Operation }[]; + search: Search; properties: Properties; } +// defaultState does not refer due to the state is load from +// background on load. const defaultState: State = { keymaps: [], - properties: { - complete: '', - smoothscroll: false, - hintchars: '', - }, + search: DefaultSetting.search, + properties: DefaultSetting.properties, }; export default function reducer( @@ -31,6 +31,7 @@ export default function reducer( }; }), properties: action.settings.properties, + search: action.settings.search, }; default: return state; -- cgit v1.2.3