From 4611ec13980b24357804aae39b2ae610c38248f4 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Thu, 12 Nov 2009 21:33:33 +0000 Subject: 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 --- chrome/browser/gtk/options/cookies_view.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'chrome/browser/gtk') 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_, -- cgit v1.1