Fix missing initialization of fSpacing.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33572 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2009-10-13 12:58:06 +00:00
parent c679d93a10
commit 23d857d96a
+3 -1
View File
@@ -27,6 +27,8 @@ FontDemoView::FontDemoView(BRect rect)
fBitmap(NULL),
fBufferView(NULL),
fString(NULL),
fFontSize(50.0),
fSpacing(0.0),
fOutLineLevel(0),
fDrawingMode(B_OP_COPY),
fBoundingBoxes(false),
@@ -35,7 +37,7 @@ FontDemoView::FontDemoView(BRect rect)
{
SetViewColor(B_TRANSPARENT_COLOR);
SetString("Haiku, inc.");
SetFontSize(50.0);
SetFontSize(fFontSize);
SetAntialiasing(true);
_NewBitmap(Bounds());