From 5c5976298b39334240370f5822963b309fe6a867 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Wed, 11 Nov 2009 11:02:47 +0000 Subject: [PATCH] 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 --- src/servers/app/FontFamily.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/servers/app/FontFamily.cpp b/src/servers/app/FontFamily.cpp index 58b58218a3..e75f79e24d 100644 --- a/src/servers/app/FontFamily.cpp +++ b/src/servers/app/FontFamily.cpp @@ -14,6 +14,8 @@ #include "FontManager.h" +#include + const uint32 kInvalidFamilyFlags = ~0UL; @@ -287,6 +289,8 @@ FontFamily::Flags() if (style->IsFixedWidth()) fFlags |= B_IS_FIXED; + if (style->IsFullAndHalfFixed()) + fFlags |= B_PRIVATE_FONT_IS_FULL_AND_HALF_FIXED; if (style->TunedCount() > 0) fFlags |= B_HAS_TUNED_FONT; }