Restore setting resizable property from ctor on Windows

This commit is contained in:
Kevin Sawicki 2016-03-07 13:53:57 -08:00
parent 7de37859f0
commit ad3f4a26fd

View file

@ -124,6 +124,7 @@ NativeWindowViews::NativeWindowViews(
#if defined(OS_WIN)
// On Windows we rely on the CanResize() to indicate whether window can be
// resized, and it should be set before window is created.
options.Get(options::kResizable, &resizable_);
options.Get(options::kMinimizable, &minimizable_);
options.Get(options::kMaximizable, &maximizable_);
#endif