summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-08 22:15:28 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-09 20:57:18 +1000
commit9e79ee5fe36dc849479ce8f3b05e7cca56c7c216 (patch)
tree596e54c6746757c2b9bc24c4baa7e9f435cbf23b /pkg/gui
parentfdee0e1497fddf618fd2a021377fdad4fbb2aa5f (diff)
Add dev doc for busy/idle tracking
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/types/common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/types/common.go b/pkg/gui/types/common.go
index 5a55c85be..e526e3d0d 100644
--- a/pkg/gui/types/common.go
+++ b/pkg/gui/types/common.go
@@ -78,7 +78,7 @@ type IGuiCommon interface {
// All controller handlers are executed on the UI thread.
OnUIThread(f func() error)
// Runs a function in a goroutine. Use this whenever you want to run a goroutine and keep track of the fact
- // that lazygit is still busy.
+ // that lazygit is still busy. See docs/dev/Busy.md
OnWorker(f func())
// returns the gocui Gui struct. There is a good chance you don't actually want to use