Window: set default min/max width/height values

This commit is contained in:
Josh Tynjala
2023-04-27 07:56:38 -07:00
parent 1a71249c09
commit e6c03494df

View File

@@ -118,10 +118,10 @@ class Window
@:noCompletion private var __width:Int;
@:noCompletion private var __x:Int;
@:noCompletion private var __y:Int;
@:noCompletion private var __minWidth:Int;
@:noCompletion private var __minHeight:Int;
@:noCompletion private var __maxWidth:Int;
@:noCompletion private var __maxHeight:Int;
@:noCompletion private var __minWidth:Int = 0;
@:noCompletion private var __minHeight:Int = 0;
@:noCompletion private var __maxWidth:Int = 0x7FFFFFFF;
@:noCompletion private var __maxHeight:Int = 0x7FFFFFFF;
#if commonjs
private static function __init__()