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
This commit is contained in:
parent
479acf2d18
commit
7a87474bcd
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user