34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
diff --git content/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm content/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm
|
|
index 0c9e9a86a0242..dc80361d0c9a0 100644
|
|
--- content/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm
|
|
+++ content/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm
|
|
@@ -165,6 +165,13 @@ void ExtractUnderlines(NSAttributedString* string,
|
|
|
|
// RenderWidgetHostViewCocoa ---------------------------------------------------
|
|
|
|
+@interface NSWindow (CefCustomMethods)
|
|
+- (int)acceptsFirstMouse;
|
|
+@end
|
|
+
|
|
+constexpr int kStateEnabled = 1;
|
|
+constexpr int kStateDisabled = 2;
|
|
+
|
|
// Private methods:
|
|
@interface RenderWidgetHostViewCocoa ()
|
|
|
|
@@ -750,6 +757,14 @@ void ExtractUnderlines(NSAttributedString* string,
|
|
}
|
|
|
|
- (BOOL)acceptsFirstMouse:(NSEvent*)theEvent {
|
|
+ if ([self.window respondsToSelector:@selector(acceptsFirstMouse)]) {
|
|
+ const auto mode = [self.window acceptsFirstMouse];
|
|
+ if (mode == kStateEnabled) {
|
|
+ return YES;
|
|
+ } else if (mode == kStateDisabled) {
|
|
+ return NO;
|
|
+ }
|
|
+ }
|
|
return [self acceptsMouseEventsWhenInactive];
|
|
}
|
|
|