summaryrefslogtreecommitdiffstats
path: root/pkg/gui/commits_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-07 15:01:07 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-09 14:09:53 +1100
commit946a35b59de44094759fa177c0218837364c9dd7 (patch)
tree0d041c4690cd039dd0d9ffb4cfd1af1a41d99d9a /pkg/gui/commits_panel.go
parent007235df2355bfeacc206b78e9827fff529d32a2 (diff)
remove OSCommand field
Diffstat (limited to 'pkg/gui/commits_panel.go')
-rw-r--r--pkg/gui/commits_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/commits_panel.go b/pkg/gui/commits_panel.go
index 1148e0a25..bbe3ada05 100644
--- a/pkg/gui/commits_panel.go
+++ b/pkg/gui/commits_panel.go
@@ -815,7 +815,7 @@ func (gui *Gui) handleOpenCommitInBrowser() error {
}
gui.logAction(gui.Tr.Actions.OpenCommitInBrowser)
- if err := gui.GitCommand.OSCommand.OpenLink(url); err != nil {
+ if err := gui.OSCommand.OpenLink(url); err != nil {
return gui.surfaceError(err)
}