Merge pull request #4111 from evgenyzinoviev/movable

Added an option to prevent a window from being moved on OS X
This commit is contained in:
Cheng Zhao 2016-01-15 23:24:22 +08:00
commit 0937144849
4 changed files with 9 additions and 0 deletions

View file

@ -22,6 +22,7 @@ const char kMinHeight[] = "minHeight";
const char kMaxWidth[] = "maxWidth";
const char kMaxHeight[] = "maxHeight";
const char kResizable[] = "resizable";
const char kMovable[] = "movable";
const char kFullscreen[] = "fullscreen";
// Whether the window should show in taskbar.

View file

@ -23,6 +23,7 @@ extern const char kMinHeight[];
extern const char kMaxWidth[];
extern const char kMaxHeight[];
extern const char kResizable[];
extern const char kMovable[];
extern const char kFullscreen[];
extern const char kSkipTaskbar[];
extern const char kKiosk[];