From 7a12ec8bf965ea67a867028d96ede5441c0bb20c Mon Sep 17 00:00:00 2001 From: Michael Pfeiffer Date: Sun, 11 Oct 2009 17:45:57 +0000 Subject: [PATCH] Correctly calculate height of partitions list. Closes ticket #4745. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33530 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootman/PartitionsPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/bootman/PartitionsPage.cpp b/src/apps/bootman/PartitionsPage.cpp index 5e60f010f3..19746a54cc 100644 --- a/src/apps/bootman/PartitionsPage.cpp +++ b/src/apps/bootman/PartitionsPage.cpp @@ -248,7 +248,7 @@ PartitionsPage::_FillPartitionsView(BView* view) fPartitionsWidth = totalWidth; - fPartitionsHeight = frame.Height(); + fPartitionsHeight = frame.top; }