fixed improper split tab saving (fixes #2025)

This commit is contained in:
Eugene Pankov 2020-01-28 20:55:51 +03:00
parent b97149aa73
commit 286b6cfdde

View File

@ -130,6 +130,11 @@ export class AppService {
this.tabsChanged.next()
this.tabClosed.next(tab)
})
if (tab instanceof SplitTabComponent) {
tab.tabAdded$.subscribe(() => this.emitTabsChanged())
tab.tabRemoved$.subscribe(() => this.emitTabsChanged())
}
}
/**