summaryrefslogtreecommitdiffstats
path: root/pkg/app
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-15 21:34:25 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-15 22:06:37 +1000
commit29ed9715580e991eb8c2c508cbf58910d544be6d (patch)
treeda61a8d762980aa75430da251725ede9a7cb4233 /pkg/app
parent905e6c16ba6e6fbfbd01338538f730b93504303e (diff)
add user configuration in json file
Diffstat (limited to 'pkg/app')
-rw-r--r--pkg/app/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/app/app.go b/pkg/app/app.go
index d558ed250..0eb9c8d25 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -52,7 +52,7 @@ func NewApp(config config.AppConfigurer) (*App, error) {
if err != nil {
return nil, err
}
- app.Gui, err = gui.NewGui(app.Log, app.GitCommand, app.OSCommand, config.GetVersion())
+ app.Gui, err = gui.NewGui(app.Log, app.GitCommand, app.OSCommand, config.GetVersion(), config.GetUserConfig())
if err != nil {
return nil, err
}