In our widget delegate, signal our Observer
This commit is contained in:
parent
37d18d512b
commit
794f89abf5
1 changed files with 3 additions and 0 deletions
|
@ -855,7 +855,10 @@ bool NativeWindowViews::ExecuteWindowsCommand(int command_id) {
|
||||||
is_minimized_ = false;
|
is_minimized_ = false;
|
||||||
} else if ((command_id & sc_mask) == SC_MAXIMIZE) {
|
} else if ((command_id & sc_mask) == SC_MAXIMIZE) {
|
||||||
NotifyWindowMaximize();
|
NotifyWindowMaximize();
|
||||||
|
} else {
|
||||||
|
NotifyExecuteWindowsCommand(command_id & sc_mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue