close last tab should behave similarly to 0.47, fixes #2298

This commit is contained in:
zadam 2021-11-01 08:37:59 +01:00
parent 7e41226549
commit fc46398a3c
2 changed files with 5 additions and 0 deletions

View file

@ -21,6 +21,10 @@ class NoteContext extends Component {
}
setEmpty() {
this.notePath = null;
this.noteId = null;
this.parentNoteId = null;
this.triggerEvent('noteSwitched', {
noteContext: this,
notePath: this.notePath

View file

@ -305,6 +305,7 @@ export default class TabManager extends Component {
const mainNoteContexts = this.getNoteContexts().filter(nc => nc.isMainContext());
if (mainNoteContexts.length === 1) {
mainNoteContexts[0].setEmpty();
return;
}
}