fix:mac chrome webconsole xterm size problem #2136

pull/2144/head
hengyunabc 3 years ago
parent 923201270a
commit ff1fd1c955

@ -8759,7 +8759,7 @@ var CharMeasure = (function (_super) {
}
if (this._width !== geometry.width || this._height !== geometry.height) {
this._width = geometry.width;
this._height = Math.ceil(geometry.height);
this._height = Math.floor(geometry.height);
this.emit('charsizechanged');
}
};

Loading…
Cancel
Save