diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 21:33:33 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 21:33:33 +0000 |
commit | 4611ec13980b24357804aae39b2ae610c38248f4 (patch) | |
tree | cd4775110ddae1a5223f7508d8370e99cc0aa5e2 /chrome/browser/gtk | |
parent | 85c27b911323224f2565a574801efa9dba92226a (diff) | |
download | chromium_src-4611ec13980b24357804aae39b2ae610c38248f4.zip chromium_src-4611ec13980b24357804aae39b2ae610c38248f4.tar.gz chromium_src-4611ec13980b24357804aae39b2ae610c38248f4.tar.bz2 |
GTK: Explicitly use underlines in cookies dialog to fix display in Karmic.
BUG=25635
Review URL: http://codereview.chromium.org/385073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31831 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r-- | chrome/browser/gtk/options/cookies_view.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/gtk/options/cookies_view.cc b/chrome/browser/gtk/options/cookies_view.cc index 69ac82c..02b61e6 100644 --- a/chrome/browser/gtk/options/cookies_view.cc +++ b/chrome/browser/gtk/options/cookies_view.cc @@ -87,6 +87,7 @@ void CookiesView::Init() { l10n_util::GetStringUTF8(IDS_COOKIES_REMOVE_LABEL)).c_str(), GTK_STOCK_REMOVE, RESPONSE_REMOVE); + gtk_button_set_use_underline(GTK_BUTTON(remove_button_), TRUE); gtk_button_box_set_child_secondary( GTK_BUTTON_BOX(GTK_DIALOG(dialog_)->action_area), remove_button_, @@ -98,6 +99,7 @@ void CookiesView::Init() { l10n_util::GetStringUTF8(IDS_COOKIES_REMOVE_ALL_LABEL)).c_str(), GTK_STOCK_CLEAR, RESPONSE_REMOVE_ALL); + gtk_button_set_use_underline(GTK_BUTTON(remove_all_button_), TRUE); gtk_button_box_set_child_secondary( GTK_BUTTON_BOX(GTK_DIALOG(dialog_)->action_area), remove_all_button_, |