From f8e5c0d4335c20b261feb4073fce80501d6bd190 Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Thu, 6 Jan 2011 16:02:28 +0000 Subject: [PATCH] Fixed what was probably axeld's expected behavior which the previous fix had changed. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40134 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootmanager/PartitionsPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/bootmanager/PartitionsPage.cpp b/src/apps/bootmanager/PartitionsPage.cpp index 1763e1d56a..49699965da 100644 --- a/src/apps/bootmanager/PartitionsPage.cpp +++ b/src/apps/bootmanager/PartitionsPage.cpp @@ -181,7 +181,7 @@ PartitionsPage::_FillPartitionsView(BView* view) .Add(BSpaceLayoutItem::CreateHorizontalStrut(10), 2, rowNumber) .Add(typeView, 3, rowNumber) .Add(pathView, 3, rowNumber + 1) - .SetRowWeight(rowNumber, 1); + .SetRowWeight(rowNumber + 1, 1); rowNumber++; } }