We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00bdd28 commit 886f285Copy full SHA for 886f285
1 file changed
src/browser/input/CompositionHelper.ts
@@ -225,8 +225,6 @@ export class CompositionHelper {
225
// Ensure the text area is at least 1x1, otherwise certain IMEs may break
226
this._textarea.style.width = Math.max(compositionViewBounds.width, 1) + 'px';
227
this._textarea.style.height = Math.max(compositionViewBounds.height, 1) + 'px';
228
- this._textarea.style.width = compositionViewBounds.width + 'px';
229
- this._textarea.style.height = compositionViewBounds.height + 'px';
230
this._textarea.style.lineHeight = compositionViewBounds.height + 'px';
231
}
232
0 commit comments