Disabled writing the font shear, since this results in missing font in

Chart's BPictureButton. Needs some investigation.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21942 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2007-08-14 09:43:19 +00:00
parent feb557a6d1
commit 9cc1cb3cae

View File

@ -849,7 +849,9 @@ ServerPicture::SetFontFromLink(BPrivate::LinkReceiver& link)
if (mask & B_FONT_SHEAR) { if (mask & B_FONT_SHEAR) {
float shear; float shear;
link.Read<float>(&shear); link.Read<float>(&shear);
WriteSetFontShear(shear); // TODO: For some reason writing the font shear
// results in missing font in Chart's BPictureButtons. Investigate.
//WriteSetFontShear(shear);
} }
if (mask & B_FONT_ROTATION) { if (mask & B_FONT_ROTATION) {