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

Unified Diff: chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc

Issue 171077: Linux: make the passwords and exceptions dialog box default size larger. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 | « no previous file | chrome/browser/gtk/options/passwords_page_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc
===================================================================
--- chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc (revision 23528)
+++ chrome/browser/gtk/options/passwords_exceptions_window_gtk.cc (working copy)
@@ -20,7 +20,8 @@
namespace {
// Initial width of the passwords and exceptions window.
-const int kPasswordsExceptionsWindowInitialWidth = 530;
+const int kPasswordsExceptionsWindowInitialWidth = 565;
+const int kPasswordsExceptionsWindowInitialHeight = 400;
} // anonymous namespace
@@ -78,7 +79,8 @@
GTK_RESPONSE_CLOSE,
NULL);
gtk_window_set_default_size(GTK_WINDOW(dialog_),
- kPasswordsExceptionsWindowInitialWidth, -1);
+ kPasswordsExceptionsWindowInitialWidth,
+ kPasswordsExceptionsWindowInitialHeight);
gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(dialog_)->vbox),
gtk_util::kContentAreaSpacing);
gtk_util::SetWindowIcon(GTK_WINDOW(dialog_));
« no previous file with comments | « no previous file | chrome/browser/gtk/options/passwords_page_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698