We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac9e89a + 1f95990 commit c39d87fCopy full SHA for c39d87f
src/bbmods/modelFormatMod.js
@@ -174,8 +174,12 @@ ModelFormat.prototype.convertTo = function convertTo() {
174
Project.saved = false
175
176
// Hacky method to refresh the top bar and make the custom tab menu appear without reopening the project
177
+ let selectedProjTabIndex = 0;
178
+ ModelProject.all.forEach(function (proj) {
179
+ if(!proj.selected) selectedProjTabIndex++
180
+ })
181
Interface.tab_bar.openNewTab()
- ModelProject.all[0].select()
182
+ ModelProject.all[selectedProjTabIndex].select()
183
}
184
185
bus.on(EVENTS.LIFECYCLE.CLEANUP, () => {
0 commit comments