Version description was one pixel too low, dunno how I missed that before.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16423 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-02-16 14:02:02 +00:00
parent 9786c1ecf9
commit bd3d31b0ab

View File

@ -153,9 +153,9 @@ ApplicationTypesWindow::ApplicationTypesWindow(BRect frame)
box->AddChild(fDescriptionLabel);
innerRect.left = innerRect.right + 3.0f;
innerRect.top += 2.0f;
innerRect.top += 1.0f;
innerRect.right = box->Bounds().Width() - 8.0f;
innerRect.bottom += fNameView->Bounds().Height() * 2.0f;
innerRect.bottom += fNameView->Bounds().Height() * 2.0f - 1.0f;
fDescriptionView = new BTextView(innerRect, "description",
innerRect.OffsetToCopy(B_ORIGIN), B_FOLLOW_LEFT_RIGHT,
B_WILL_DRAW | B_FRAME_EVENTS);