From 401b3cc19f9e4908d88fac90710a56191dee3524 Mon Sep 17 00:00:00 2001 From: casey Date: Sat, 18 Jun 2016 12:38:30 -0700 Subject: [PATCH] Fixed a small bug in SearchLayout where the category listviews were overlapping the transport. --- src/musikbox/app/layout/SearchLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musikbox/app/layout/SearchLayout.cpp b/src/musikbox/app/layout/SearchLayout.cpp index a13538dba..570277797 100755 --- a/src/musikbox/app/layout/SearchLayout.cpp +++ b/src/musikbox/app/layout/SearchLayout.cpp @@ -79,7 +79,7 @@ void SearchLayout::Layout() { size_t labelY = SEARCH_HEIGHT; size_t categoryWidth = cx / 3; size_t categoryY = labelY + LABEL_HEIGHT; - size_t categoryHeight = cy - SEARCH_HEIGHT; + size_t categoryHeight = cy - SEARCH_HEIGHT - 1; size_t lastCategoryWidth = cx - (categoryWidth * 2); this->albumsLabel->MoveAndResize(0, labelY, categoryWidth, 1);