diff options
author | Stef Walter <stef@memberwebs.com> | 2004-07-27 21:22:58 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-07-27 21:22:58 +0000 |
commit | d2105fb3fb2082bb32875eaab6db6a2c04c7eae5 (patch) | |
tree | b7773e478bc4bc1279f32497371bce9ceccd5d72 /src/rtfformatting.h | |
parent | 6dd9754bb73589abb7d55186f8ec15d67d91b70d (diff) |
- Preserve mode
- Document options
- Font fixes
Diffstat (limited to 'src/rtfformatting.h')
-rw-r--r-- | src/rtfformatting.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtfformatting.h b/src/rtfformatting.h index f2d0581..aa5ac58 100644 --- a/src/rtfformatting.h +++ b/src/rtfformatting.h @@ -155,7 +155,7 @@ public: void textSetFont(int font) { m_font = font; } void textSetFontSize(int fsize) - { m_fsize = fsize; } + { m_fsize = fsize == 24 ? -1 : fsize; } // default font size is always 24 void paraSetStyle(int style) { m_style = style; } void paraSetList(int list) |