In our widget delegate, signal our Observer
authorPaul Betts <paul@paulbetts.org>
Thu, 18 Jun 2015 00:16:08 +0000 (17:16 -0700)
committerPaul Betts <paul@paulbetts.org>
Thu, 25 Jun 2015 17:29:21 +0000 (11:29 -0600)
atom/browser/native_window_views.cc

index 14a8904..f03ec73 100644 (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