reduce the min height

this reduces the window to the smallest size that can fit a dialog
This commit is contained in:
SteVen Batten
2019-11-08 15:37:31 -08:00
parent 69349e6eab
commit 38e3ad05f6

View File

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