mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-19 14:22:19 +01:00
Increase sizes up to known maximums (#207611)
Increase sizes up to known maximums (fixes #164663)
This commit is contained in:
@@ -339,8 +339,9 @@ export class View extends ViewEventHandler {
|
||||
this._overflowGuardContainer.setWidth(layoutInfo.width);
|
||||
this._overflowGuardContainer.setHeight(layoutInfo.height);
|
||||
|
||||
this._linesContent.setWidth(1000000);
|
||||
this._linesContent.setHeight(1000000);
|
||||
// https://stackoverflow.com/questions/38905916/content-in-google-chrome-larger-than-16777216-px-not-being-rendered
|
||||
this._linesContent.setWidth(16777216);
|
||||
this._linesContent.setHeight(16777216);
|
||||
}
|
||||
|
||||
private _getEditorClassName() {
|
||||
|
||||
Reference in New Issue
Block a user