summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/status_bubble_gtk.cc
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-24 20:45:44 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-24 20:45:44 +0000
commit99aeaf4dee63c9feeab93d0ee3d2c51f1cc9b2ad (patch)
treea42780d225a66debf259e5490b144ce6fd5cb2bc /chrome/browser/gtk/status_bubble_gtk.cc
parent7139c27f770bdb1c1334fe593e41efac4488a040 (diff)
downloadchromium_src-99aeaf4dee63c9feeab93d0ee3d2c51f1cc9b2ad.zip
chromium_src-99aeaf4dee63c9feeab93d0ee3d2c51f1cc9b2ad.tar.gz
chromium_src-99aeaf4dee63c9feeab93d0ee3d2c51f1cc9b2ad.tar.bz2
Reduce the status bubble rounding by a pixel.
Since we don't have real rounded corners, make the corner look less blocky and only clip by 3 pixels. This matches the "rounding" of the bottom of the find box. Review URL: http://codereview.chromium.org/174344 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/status_bubble_gtk.cc')
-rw-r--r--chrome/browser/gtk/status_bubble_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/status_bubble_gtk.cc b/chrome/browser/gtk/status_bubble_gtk.cc
index 335d780..e21f581 100644
--- a/chrome/browser/gtk/status_bubble_gtk.cc
+++ b/chrome/browser/gtk/status_bubble_gtk.cc
@@ -26,7 +26,7 @@ const int kInternalTopBottomPadding = 1;
const int kInternalLeftRightPadding = 2;
// The radius of the edges of our bubble.
-const int kCornerSize = 4;
+const int kCornerSize = 3;
// Milliseconds before we hide the status bubble widget when you mouseout.
const int kHideDelay = 250;