diff options
author | Colin Harrison <colin.harrison@virgin.net> | 2010-02-02 16:22:39 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-02-05 18:17:35 +0000 |
commit | 881812438b430d2856d0494707e028e5f30d6e9a (patch) | |
tree | 6709f45071a976b0cc345c7069e3086a816b27ab | |
parent | c02638fd68440513b6046315547c554a910bd7e2 (diff) |
Xming: Use 8 point font for URL in About dialog
Use an 8 point font for URL in About dialog, to match the rest
of the text in that dialog
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rwxr-xr-x | hw/xwin/windialogs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xwin/windialogs.c b/hw/xwin/windialogs.c index 582b865f5..0b590cf1d 100755 --- a/hw/xwin/windialogs.c +++ b/hw/xwin/windialogs.c @@ -116,8 +116,8 @@ winDrawURLWindow (LPARAM lParam) crText = RGB(0,0,128+64); SetTextColor (draw->hDC, crText); - /* Create underlined font 14 high, standard dialog font */ - font = CreateFont (-14, 0, 0, 0, FW_NORMAL, FALSE, TRUE, FALSE, + /* Create font 8 high, standard dialog font */ + font = CreateFont (-8, 0, 0, 0, FW_DONTCARE, FALSE, FALSE, FALSE, 0, 0, 0, 0, 0, "MS Sans Serif"); if (!font) { |