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

Unified Diff: chrome/browser/gtk/options/url_picker_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
« no previous file with comments | « chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc ('k') | chrome/common/gtk_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/options/url_picker_dialog_gtk.cc
===================================================================
--- chrome/browser/gtk/options/url_picker_dialog_gtk.cc (revision 36381)
+++ chrome/browser/gtk/options/url_picker_dialog_gtk.cc (working copy)
@@ -152,14 +152,13 @@
// Set the size of the dialog.
gtk_widget_realize(dialog_);
- int width = 1, height = 1;
- gtk_util::GetWidgetSizeFromResources(
- dialog_,
- IDS_URLPICKER_DIALOG_WIDTH_CHARS,
- IDS_URLPICKER_DIALOG_HEIGHT_LINES,
- &width, &height);
- gtk_window_set_default_size(GTK_WINDOW(dialog_), width, height);
+ gtk_util::SetWindowSizeFromResources(GTK_WINDOW(dialog_),
+ IDS_URLPICKER_DIALOG_WIDTH_CHARS,
+ IDS_URLPICKER_DIALOG_HEIGHT_LINES,
+ true);
+
// Set the width of the first column as well.
+ int width;
gtk_util::GetWidgetSizeFromResources(
dialog_,
IDS_URLPICKER_DIALOG_LEFT_COLUMN_WIDTH_CHARS, 0,
« no previous file with comments | « chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc ('k') | chrome/common/gtk_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698