diff --git a/atom/browser/native_window_mac.mm b/atom/browser/native_window_mac.mm index 167b3a1c5d..1475e53f1c 100644 --- a/atom/browser/native_window_mac.mm +++ b/atom/browser/native_window_mac.mm @@ -135,7 +135,9 @@ static const CGFloat kAtomWindowCornerRadius = 4.0; } - (IBAction)reload:(id)sender { - shell_->GetWebContents()->GetController().ReloadIgnoringCache(false); + content::WebContents* web_contents = shell_->GetWebContents(); + content::NavigationController::LoadURLParams params(web_contents->GetURL()); + web_contents->GetController().LoadURLWithParams(params); } - (IBAction)showDevTools:(id)sender {