summaryrefslogtreecommitdiffstats
path: root/pkg/gui/gui.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/gui.go')
-rw-r--r--pkg/gui/gui.go17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go
index 5f5955e5a..33057ba42 100644
--- a/pkg/gui/gui.go
+++ b/pkg/gui/gui.go
@@ -448,14 +448,15 @@ func NewGui(
// sake of backwards compatibility. We're making use of short circuiting here
ShowExtrasWindow: cmn.UserConfig.Gui.ShowCommandLog && !config.GetAppState().HideCommandLog,
Mutexes: types.Mutexes{
- RefreshingFilesMutex: &deadlock.Mutex{},
- RefreshingStatusMutex: &deadlock.Mutex{},
- SyncMutex: &deadlock.Mutex{},
- LocalCommitsMutex: &deadlock.Mutex{},
- SubCommitsMutex: &deadlock.Mutex{},
- SubprocessMutex: &deadlock.Mutex{},
- PopupMutex: &deadlock.Mutex{},
- PtyMutex: &deadlock.Mutex{},
+ RefreshingFilesMutex: &deadlock.Mutex{},
+ RefreshingBranchesMutex: &deadlock.Mutex{},
+ RefreshingStatusMutex: &deadlock.Mutex{},
+ SyncMutex: &deadlock.Mutex{},
+ LocalCommitsMutex: &deadlock.Mutex{},
+ SubCommitsMutex: &deadlock.Mutex{},
+ SubprocessMutex: &deadlock.Mutex{},
+ PopupMutex: &deadlock.Mutex{},
+ PtyMutex: &deadlock.Mutex{},
},
InitialDir: initialDir,
}