@xterm/xterm 6.1.0-beta.187 → 6.1.0-beta.188

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "6.1.0-beta.187",
4
+ "version": "6.1.0-beta.188",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -119,5 +119,5 @@
119
119
  "ws": "^8.2.3",
120
120
  "xterm-benchmark": "^0.3.1"
121
121
  },
122
- "commit": "af6731b5337e33724a2c6f4dff47015362138b09"
122
+ "commit": "18262c87d931a4165ddb0f7d07f18fbf8b464ae7"
123
123
  }
@@ -573,7 +573,10 @@ export class CoreBrowserTerminal extends CoreTerminal implements ITerminal {
573
573
  this._renderService!.handleCursorMove();
574
574
  this._syncTextArea();
575
575
  }));
576
- this._register(this.onResize(() => this._renderService!.handleResize(this.cols, this.rows)));
576
+ this._register(this.onResize(() => {
577
+ this._renderService!.handleResize(this.cols, this.rows);
578
+ this._syncTextArea();
579
+ }));
577
580
  this._register(this.onBlur(() => this._renderService!.handleBlur()));
578
581
  this._register(this.onFocus(() => this._renderService!.handleFocus()));
579
582
 
@@ -6,4 +6,4 @@
6
6
  /**
7
7
  * The xterm.js version. This is updated by the publish script from package.json.
8
8
  */
9
- export const XTERM_VERSION = '6.1.0-beta.187';
9
+ export const XTERM_VERSION = '6.1.0-beta.188';