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

Unified Diff: chrome/browser/gtk/clear_browsing_data_dialog_gtk.cc

Issue 551034: Simplify the gtk AutoFill dialog and bring it more in line with the mocks.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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/gtk/clear_browsing_data_dialog_gtk.cc
===================================================================
--- chrome/browser/gtk/clear_browsing_data_dialog_gtk.cc (revision 36381)
+++ chrome/browser/gtk/clear_browsing_data_dialog_gtk.cc (working copy)
@@ -31,9 +31,10 @@
GTK_RESPONSE_REJECT,
NULL);
gtk_widget_realize(dialog);
- gtk_util::SetWindowWidthFromResources(GTK_WINDOW(dialog),
- IDS_CLEARDATA_DIALOG_WIDTH_CHARS,
- /* resizable */ false);
+ gtk_util::SetWindowSizeFromResources(GTK_WINDOW(dialog),
+ IDS_CLEARDATA_DIALOG_WIDTH_CHARS,
+ -1, // height
+ false); // resizable
gtk_util::AddButtonToDialog(dialog,
l10n_util::GetStringUTF8(IDS_CLEAR_BROWSING_DATA_COMMIT).c_str(),
GTK_STOCK_APPLY, GTK_RESPONSE_ACCEPT);
« no previous file with comments | « chrome/browser/gtk/bookmark_manager_gtk.cc ('k') | chrome/browser/gtk/create_application_shortcuts_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698