summaryrefslogtreecommitdiffstats
path: root/pkg/app
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-18 13:22:05 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-18 13:22:05 +1000
commit10fdb5a609f8edcb426f01611179718235c4d4a0 (patch)
treef6bd13d729982b587da548cb3f043987ee65b514 /pkg/app
parent4dc6d40b5a2d7b7ba882c92f3c62b7122fcd849d (diff)
support writing back to user config
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 e18a98dc4..98da0b0fa 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -60,7 +60,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, app.Tr, config.GetUserConfig(), config.GetVersion())
+ app.Gui, err = gui.NewGui(app.Log, app.GitCommand, app.OSCommand, app.Tr, config)
if err != nil {
return nil, err
}