diff --git a/src/apps/bootmanager/Jamfile b/src/apps/bootmanager/Jamfile index 5a0d686e05..c05c48a976 100644 --- a/src/apps/bootmanager/Jamfile +++ b/src/apps/bootmanager/Jamfile @@ -1,6 +1,7 @@ SubDir HAIKU_TOP src apps bootmanager ; UsePrivateHeaders shared storage tracker ; +UsePrivateHeaders interface ; local cataloguedSources = BootDrive.cpp diff --git a/src/apps/bootmanager/PartitionsPage.cpp b/src/apps/bootmanager/PartitionsPage.cpp index 01c3c56cf8..833f9a5361 100644 --- a/src/apps/bootmanager/PartitionsPage.cpp +++ b/src/apps/bootmanager/PartitionsPage.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include @@ -100,7 +101,9 @@ PartitionsPage::_BuildUI() .SetColumnWeight(3, 0.5); _FillPartitionsView(fPartitions); - BScrollView* scrollView = new BScrollView("scrollView", fPartitions, 0, + BViewPort* viewPort = new BViewPort(fPartitions); + + BScrollView* scrollView = new BScrollView("scrollView", viewPort, 0, false, true); SetLayout(new BGroupLayout(B_VERTICAL));