mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-04 15:58:49 +01:00
🎨 改进状态栏显示后台任务执行计数 Fix https://github.com/siyuan-note/siyuan/issues/7398
This commit is contained in:
parent
dc63e56641
commit
7b41e698e1
3 changed files with 23 additions and 9 deletions
|
|
@ -268,7 +268,7 @@ func init() {
|
|||
return
|
||||
}
|
||||
|
||||
current := context["current"].(int) + 1
|
||||
current := context["current"].(int)
|
||||
total := context["total"]
|
||||
msg := fmt.Sprintf(Conf.Language(90), current, total, blockCount, hash)
|
||||
util.SetBootDetails(msg)
|
||||
|
|
@ -280,7 +280,7 @@ func init() {
|
|||
return
|
||||
}
|
||||
|
||||
current := context["current"].(int) + 1
|
||||
current := context["current"].(int)
|
||||
total := context["total"]
|
||||
msg := fmt.Sprintf(Conf.Language(93), current, total, rootID)
|
||||
util.SetBootDetails(msg)
|
||||
|
|
@ -292,7 +292,7 @@ func init() {
|
|||
return
|
||||
}
|
||||
|
||||
current := context["current"].(int) + 1
|
||||
current := context["current"].(int)
|
||||
total := context["total"]
|
||||
msg := fmt.Sprintf(Conf.Language(191), current, total)
|
||||
util.SetBootDetails(msg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue