Fixed file loading bug where the wrong input is set

This commit is contained in:
n1474335 2023-01-13 13:51:16 +00:00
parent f2bd838596
commit 17c349973d
2 changed files with 7 additions and 6 deletions

View file

@ -485,7 +485,10 @@ class InputWaiter {
async set(inputNum, inputData, silent=false) {
return new Promise(function(resolve, reject) {
const activeTab = this.manager.tabs.getActiveTab("input");
if (inputNum !== activeTab) return;
if (inputNum !== activeTab) {
this.changeTab(inputNum, this.app.options.syncTabs);
return;
}
// Update current character encoding
this.inputChrEnc = inputData.encoding;