Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3043)

Unified Diff: chrome/browser/ui/cocoa/hyperlink_text_view.mm

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to commens Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/hyperlink_text_view.mm
diff --git a/chrome/browser/ui/cocoa/hyperlink_text_view.mm b/chrome/browser/ui/cocoa/hyperlink_text_view.mm
index ea92f4c17c90658c3f30658df0643f10ccd61e8c..8361f4acaa0d7c11e2856201f0c3dc2811d1c8cb 100644
--- a/chrome/browser/ui/cocoa/hyperlink_text_view.mm
+++ b/chrome/browser/ui/cocoa/hyperlink_text_view.mm
@@ -43,6 +43,10 @@ const float kTextBaselineShift = -1.0;
return NSMakeRange(0, 0);
}
+- (BOOL)acceptsFirstMouse:(NSEvent*)event {
+ return YES;
Nico 2011/10/12 16:23:09 this is an unintentional change, right?
jeremya 2011/10/13 05:16:54 Yep, removed.
+}
+
// Convince NSTextView to not show an I-Beam cursor when the cursor is over the
// text view but not over actual text.
//

Powered by Google App Engine
This is Rietveld 408576698