GNOME Bugzilla – Bug 593212
non-pixel size used for search entry
Last modified: 2009-08-28 20:24:24 UTC
Almost everywhere we specify our font sizes in terms of pixels - good, bad, hard to say. Should move to CSS stylesheets anyways. But we need to be consistent. The search entry has: let textProperties = { font_name: "Sans 12" }; Depending on the "DPI" (points/pixel factor) of the user's environment, this may be way out of scale with the rest of the text and potentially quite large.
Created attachment 141959 [details] [review] 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.)
Pushed as too trivial to need review.