diff options
author | noms@chromium.org <noms@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 19:05:19 +0000 |
---|---|---|
committer | noms@chromium.org <noms@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 19:05:19 +0000 |
commit | 700e4618a8454db541728226ba22094266a5138a (patch) | |
tree | 5ab52c67d8a69b72fb7600942e454630ac4746a9 | |
parent | 41a8718a0e9e77a4d60e87eaaf11bb940558d849 (diff) | |
download | chromium_src-700e4618a8454db541728226ba22094266a5138a.zip chromium_src-700e4618a8454db541728226ba22094266a5138a.tar.gz chromium_src-700e4618a8454db541728226ba22094266a5138a.tar.bz2 |
Mac: Don't display empty tooltips for links embedded text.
(notry-ing because the linux_chromeos bot is grumpy and this is a one line change affecting only mac, bots of which are green)
BUG=292559
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/23567042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225223 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ui/cocoa/hyperlink_text_view.mm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/hyperlink_text_view.mm b/chrome/browser/ui/cocoa/hyperlink_text_view.mm index 178d6a2..0a2ac49 100644 --- a/chrome/browser/ui/cocoa/hyperlink_text_view.mm +++ b/chrome/browser/ui/cocoa/hyperlink_text_view.mm @@ -76,6 +76,7 @@ const float kTextBaselineShift = -1.0; // addAttributes for text that has NSLinkAttributeName. Set to nil to allow // custom attributes to take precendence. [self setLinkTextAttributes:nil]; + [self setDisplaysLinkToolTips:NO]; } - (void)fixupCursor { |