mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
change order of execution to mitigate race conditions
This commit is contained in:
parent
7d877d0fef
commit
3b98428c8c
@ -162,9 +162,6 @@ class TabContext {
|
||||
this.noteChangeDisabled = false;
|
||||
}
|
||||
|
||||
// after loading new note make sure editor is scrolled to the top
|
||||
this.getComponent().scrollToTop();
|
||||
|
||||
this.setTitleBar();
|
||||
|
||||
this.cleanup(); // esp. on windows autocomplete is not getting closed automatically
|
||||
@ -186,6 +183,9 @@ class TabContext {
|
||||
}
|
||||
|
||||
bundleService.executeRelationBundles(this.note, 'runOnNoteView', this);
|
||||
|
||||
// after loading new note make sure editor is scrolled to the top
|
||||
this.getComponent().scrollToTop();
|
||||
}
|
||||
|
||||
async show() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user