summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/local_commits_controller.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-02-05 14:42:56 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-17 19:13:40 +1100
commit482bdc4f1ea5448c5e98697ae66221e544ea40dd (patch)
tree7df478f9870e3dddc85f77d7b77439bed16e3c7b /pkg/gui/controllers/local_commits_controller.go
parent8e3484d8e98faf12f8395eaf5f9e8381f77a8e52 (diff)
more refactoring
Diffstat (limited to 'pkg/gui/controllers/local_commits_controller.go')
-rw-r--r--pkg/gui/controllers/local_commits_controller.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/gui/controllers/local_commits_controller.go b/pkg/gui/controllers/local_commits_controller.go
index 5458697e3..e962ea48e 100644
--- a/pkg/gui/controllers/local_commits_controller.go
+++ b/pkg/gui/controllers/local_commits_controller.go
@@ -22,6 +22,7 @@ type (
)
type LocalCommitsController struct {
+ baseController
c *types.ControllerCommon
context types.IListContext
os *oscommands.OSCommand
@@ -68,6 +69,7 @@ func NewLocalCommitsController(
setShowWholeGitGraph func(bool),
) *LocalCommitsController {
return &LocalCommitsController{
+ baseController: baseController{},
c: c,
context: context,
os: os,