Make min/max size respect use-content-size
This commit is contained in:
parent
d19ead1907
commit
e675407552
1 changed files with 10 additions and 2 deletions
|
@ -119,15 +119,23 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
|
||||||
} else if (options.Get(switches::kCenter, ¢er) && center) {
|
} else if (options.Get(switches::kCenter, ¢er) && center) {
|
||||||
Center();
|
Center();
|
||||||
}
|
}
|
||||||
|
extensions::SizeConstraints size_constraints;
|
||||||
int min_height = 0, min_width = 0;
|
int min_height = 0, min_width = 0;
|
||||||
if (options.Get(switches::kMinHeight, &min_height) |
|
if (options.Get(switches::kMinHeight, &min_height) |
|
||||||
options.Get(switches::kMinWidth, &min_width)) {
|
options.Get(switches::kMinWidth, &min_width)) {
|
||||||
SetMinimumSize(gfx::Size(min_width, min_height));
|
size_constraints.set_minimum_size(gfx::Size(min_width, min_height));
|
||||||
}
|
}
|
||||||
int max_height = INT_MAX, max_width = INT_MAX;
|
int max_height = INT_MAX, max_width = INT_MAX;
|
||||||
if (options.Get(switches::kMaxHeight, &max_height) |
|
if (options.Get(switches::kMaxHeight, &max_height) |
|
||||||
options.Get(switches::kMaxWidth, &max_width)) {
|
options.Get(switches::kMaxWidth, &max_width)) {
|
||||||
SetMaximumSize(gfx::Size(max_width, max_height));
|
size_constraints.set_maximum_size(gfx::Size(max_width, max_height));
|
||||||
|
}
|
||||||
|
bool use_content_size = false;
|
||||||
|
options.Get(switches::kUseContentSize, &use_content_size);
|
||||||
|
if (use_content_size) {
|
||||||
|
SetContentSizeConstraints(size_constraints);
|
||||||
|
} else {
|
||||||
|
SetSizeConstraints(size_constraints);
|
||||||
}
|
}
|
||||||
bool resizable;
|
bool resizable;
|
||||||
if (options.Get(switches::kResizable, &resizable)) {
|
if (options.Get(switches::kResizable, &resizable)) {
|
||||||
|
|
Loading…
Reference in a new issue