🎨 Reset doc browsing position after data snapshot rollback https://github.com/siyuan-note/siyuan/issues/8231

This commit is contained in:
Liang Ding 2023-05-11 11:43:17 +08:00
parent 8f2144b9df
commit 7a68c8ad1b
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 10 additions and 1 deletions

View file

@ -120,8 +120,15 @@ func ClosePushChan(id string) {
})
}
func ReloadUIResetScroll() {
evt := NewCmdResult("reloadui", 0, PushModeBroadcast)
evt.Data = map[string]interface{}{"resetScroll": true}
PushEvent(evt)
}
func ReloadUI() {
evt := NewCmdResult("reloadui", 0, PushModeBroadcast)
evt.Data = map[string]interface{}{"dropCurrentLayout": false}
PushEvent(evt)
}