[gnome-shell] Switch Find entry text size to px



commit 7a87474bcdf52358065c167422cf039f76599249
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Fri Aug 28 16:21:21 2009 -0400

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/dash.js b/js/ui/dash.js
index 69f943a..dcff03b 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,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]