views: Fix crash when setSizeConstrains is called early
This commit is contained in:
parent
f52c4af605
commit
6aec8b092c
1 changed files with 4 additions and 1 deletions
|
@ -390,7 +390,10 @@ gfx::Size NativeWindowViews::GetContentSize() {
|
||||||
void NativeWindowViews::SetContentSizeConstraints(
|
void NativeWindowViews::SetContentSizeConstraints(
|
||||||
const extensions::SizeConstraints& size_constraints) {
|
const extensions::SizeConstraints& size_constraints) {
|
||||||
NativeWindow::SetContentSizeConstraints(size_constraints);
|
NativeWindow::SetContentSizeConstraints(size_constraints);
|
||||||
window_->OnSizeConstraintsChanged();
|
// widget_delegate() is only available after Init() is called, we make use of
|
||||||
|
// this to determine whether native widget has initialized.
|
||||||
|
if (window_ && window_->widget_delegate())
|
||||||
|
window_->OnSizeConstraintsChanged();
|
||||||
#if defined(USE_X11)
|
#if defined(USE_X11)
|
||||||
if (resizable_)
|
if (resizable_)
|
||||||
old_size_constraints_ = size_constraints;
|
old_size_constraints_ = size_constraints;
|
||||||
|
|
Loading…
Reference in a new issue