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

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

Issue 155041: GTK: Improve look of find in page failure label.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/find_bar_gtk.cc
===================================================================
--- chrome/browser/gtk/find_bar_gtk.cc (revision 19874)
+++ chrome/browser/gtk/find_bar_gtk.cc (working copy)
@@ -193,11 +193,12 @@
gtk_widget_modify_text(text_entry_, GTK_STATE_NORMAL, &kEntryTextColor);
match_count_label_ = gtk_label_new(NULL);
+ gtk_misc_set_padding(GTK_MISC(match_count_label_), 2, 0);
match_count_event_box_ = gtk_event_box_new();
GtkWidget* match_count_centerer = gtk_vbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(match_count_centerer), match_count_event_box_,
TRUE, TRUE, 0);
- gtk_container_set_border_width(GTK_CONTAINER(match_count_centerer), 3);
+ gtk_container_set_border_width(GTK_CONTAINER(match_count_centerer), 1);
gtk_container_add(GTK_CONTAINER(match_count_event_box_), match_count_label_);
UpdateMatchLabelAppearance(false);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698