Merge pull request #4680 from atom/resizable-linux

Respect initial resizable window option on Linux
This commit is contained in:
Cheng Zhao 2016-03-08 19:46:40 +09:00
commit a9c40de393
2 changed files with 24 additions and 16 deletions

View file

@ -115,6 +115,12 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
} else {
SetSizeConstraints(size_constraints);
}
#if defined(USE_X11)
bool resizable;
if (options.Get(options::kResizable, &resizable)) {
SetResizable(resizable);
}
#endif
#if defined(OS_WIN) || defined(USE_X11)
bool closable;
if (options.Get(options::kClosable, &closable)) {