diff options
author | jcid <devnull@localhost> | 2008-09-08 16:50:15 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-08 16:50:15 +0200 |
commit | 9d0c154884a9b10c2e45f269be0bb686da1c98c9 (patch) | |
tree | b5fd5bd56273427f5f1cbf9fe7c4b10d004ffe72 /src/dialog.cc | |
parent | 994af550781a1756b1bee6225c01ff0f12219d14 (diff) |
- Adjusted internal font sizes so the default font_factor is 1.0
Diffstat (limited to 'src/dialog.cc')
-rw-r--r-- | src/dialog.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dialog.cc b/src/dialog.cc index ebca3e0a..167ab38d 100644 --- a/src/dialog.cc +++ b/src/dialog.cc @@ -135,8 +135,7 @@ void *a_Dialog_make_text_window(const char *txt, const char *title) /* enable wrapping lines; text uses entire width of window */ td->wrap_mode(true, 0); - /* 11.0 instead of 12.0 because the dialog's font is a bit bigger */ - td->textsize((int) rint(11.0 * prefs.font_factor)); + td->textsize((int) rint(13.0 * prefs.font_factor)); fltk::setfont(td->textfont(), td->textsize()); lines = td->total_lines(); |