From 1993ca576f489c1b07f4718c7d71efaa22ba37d5 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Thu, 7 Jul 2016 13:48:55 -0700 Subject: [PATCH] app: get config preferences and not plugins --- app/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config.js b/app/config.js index 3a9cfc17..5dd62d24 100644 --- a/app/config.js +++ b/app/config.js @@ -8,14 +8,14 @@ export default class Config extends React.Component { constructor () { super(); this.state = { - config: config.get() + config: config.getConfig() }; this.onChange = this.onChange.bind(this); } onChange () { new Notification('HyperTerm configuration reloaded!'); - this.setState({ config: config.get() }); + this.setState({ config: config.getConfig() }); } componentDidMount () {