People: Improve edit UI and stability #22

This commit is contained in:
Michael Mayer
2021-08-24 14:27:34 +02:00
parent 9238d569e4
commit 03cdc8bb7d
15 changed files with 152 additions and 131 deletions

View File

@@ -10,9 +10,10 @@ var (
SyncWorker = Busy{}
ShareWorker = Busy{}
MetaWorker = Busy{}
FacesWorker = Busy{}
)
// WorkersBusy returns true if any worker is busy.
func WorkersBusy() bool {
return MainWorker.Busy() || SyncWorker.Busy() || ShareWorker.Busy() || MetaWorker.Busy()
return MainWorker.Busy() || SyncWorker.Busy() || ShareWorker.Busy() || MetaWorker.Busy() || FacesWorker.Busy()
}