change order of execution to mitigate race conditions

This commit is contained in:
zadam 2020-01-02 19:03:54 +01:00
parent 7d877d0fef
commit 3b98428c8c

View file

@ -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() {