From 7a87474bcdf52358065c167422cf039f76599249 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Fri, 28 Aug 2009 16:21:21 -0400 Subject: [PATCH] Switch Find entry text size to px All our font sizes were in px, other than the size for the text in the search entry. Switch that from 12 to 16px (which is the same size at the standard 96dpi), it doesn't become out of scale if the DPI is different. (Using fixed px sizes isn't probably what we want to do in the long term; moving to style sheets will be a good place to fix that. But better to be consistent.) http://bugzilla.gnome.org/show_bug.cgi?id=593212 --- js/ui/dash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/dash.js b/js/ui/dash.js index 69f943af7..dcff03bb4 100644 --- a/js/ui/dash.js +++ b/js/ui/dash.js @@ -252,7 +252,7 @@ SearchEntry.prototype = { this._defaultText = _("Find..."); - let textProperties = { font_name: "Sans 12" }; + let textProperties = { font_name: "Sans 16px" }; let entryProperties = { editable: true, activatable: true, single_line_mode: true,