diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-31 13:08:28 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-31 13:08:28 +0100 |
commit | c1efa6ef43ce945d5881f82145a1356cb451125b (patch) | |
tree | 9e44685e46684af89eb5c7b1a1c5a119f4e187c7 | |
parent | 8ac9c2ac0a4d3a085e063ce1b6ece07372c59a68 (diff) |
don't ignore font attributes when falling back to HELVETICA
-rw-r--r-- | dw/fltkplatform.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/fltkplatform.cc b/dw/fltkplatform.cc index c354d035..e070b7d9 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -59,7 +59,7 @@ FltkFont::FltkFont (core::style::FontAttrs *attrs) * If using xft, fltk::HELVETICA just means sans, fltk::COURIER * means mono, and fltk::TIMES means serif. */ - font = HELVETICA; + font = HELVETICA->plus (fa); } setfont(font, size); |