Parcourir la source

Setting a text value in the input now closes any open files.

n1474335 il y a 7 ans
Parent
commit
fe8f8bc712
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      src/web/InputWaiter.js

+ 1 - 0
src/web/InputWaiter.js

@@ -64,6 +64,7 @@ InputWaiter.prototype.set = function(input) {
         this.setInputInfo(input.size, null);
     } else {
         inputText.value = input;
+        this.closeFile();
         window.dispatchEvent(this.manager.statechange);
         const lines = input.length < (this.app.options.ioDisplayThreshold * 1024) ?
             input.count("\n") + 1 : null;