The family flags did not report if a font was "full and half fixed". But

this flag isn't even set, yet, anyway, so nothing changed for real.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34000 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2009-11-11 11:02:47 +00:00
parent b69c3af236
commit 5c5976298b
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,8 @@
#include "FontManager.h" #include "FontManager.h"
#include <FontPrivate.h>
const uint32 kInvalidFamilyFlags = ~0UL; const uint32 kInvalidFamilyFlags = ~0UL;
@ -287,6 +289,8 @@ FontFamily::Flags()
if (style->IsFixedWidth()) if (style->IsFixedWidth())
fFlags |= B_IS_FIXED; fFlags |= B_IS_FIXED;
if (style->IsFullAndHalfFixed())
fFlags |= B_PRIVATE_FONT_IS_FULL_AND_HALF_FIXED;
if (style->TunedCount() > 0) if (style->TunedCount() > 0)
fFlags |= B_HAS_TUNED_FONT; fFlags |= B_HAS_TUNED_FONT;
} }