In our widget delegate, signal our Observer

This commit is contained in:
Paul Betts 2015-06-17 17:16:08 -07:00
parent 37d18d512b
commit 794f89abf5

View file

@ -855,7 +855,10 @@ bool NativeWindowViews::ExecuteWindowsCommand(int command_id) {
is_minimized_ = false;
} else if ((command_id & sc_mask) == SC_MAXIMIZE) {
NotifyWindowMaximize();
} else {
NotifyExecuteWindowsCommand(command_id & sc_mask);
}
return false;
}
#endif