set a new minimum window size 600x600

resolves #80995
resolves #78165
This commit is contained in:
SteVen Batten
2019-10-17 11:38:31 -07:00
parent 51ea3a65ea
commit ede82b1638

View File

@@ -59,8 +59,8 @@ const enum WindowError {
export class CodeWindow extends Disposable implements ICodeWindow {
private static readonly MIN_WIDTH = 200;
private static readonly MIN_HEIGHT = 120;
private static readonly MIN_WIDTH = 600;
private static readonly MIN_HEIGHT = 600;
private static readonly MAX_URL_LENGTH = 2 * 1024 * 1024; // https://cs.chromium.org/chromium/src/url/url_constants.cc?l=32