Browse Source

fix: first mouse not dragging BrowserView (#31062)

Shelley Vohr 3 years ago
parent
commit
919fd0f28d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      shell/browser/native_browser_view_mac.mm

+ 4 - 0
shell/browser/native_browser_view_mac.mm

@@ -62,6 +62,10 @@ const NSAutoresizingMaskOptions kDefaultAutoResizingMask =
   return NO;
 }
 
+- (BOOL)acceptsFirstMouse:(NSEvent*)event {
+  return YES;
+}
+
 - (BOOL)shouldIgnoreMouseEvent {
   NSEventType type = [[NSApp currentEvent] type];
   return type != NSEventTypeLeftMouseDragged &&