From 0d9287c1be7ee03f611bcb9bdd7ca65969b54ab5 Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Thu, 12 Jun 2014 18:57:49 +0000 Subject: [PATCH] Increase size of playqueue entries by 25% --- ChangeLog | 1 + widgets/groupedview.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c7d3ba5a4..06132f03e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -148,6 +148,7 @@ 93. Use external editor to edit lyrics. 94. Allow searching on performer tag. 95. Remove ID3v1 when saving ID3 tags. +96. 25% larger items in playqueue. Incrases covers from 32px to 40px 1.3.4 ----- diff --git a/widgets/groupedview.cpp b/widgets/groupedview.cpp index 9b7fd962f..67c73ad08 100644 --- a/widgets/groupedview.cpp +++ b/widgets/groupedview.cpp @@ -52,10 +52,10 @@ static double sizeAdjust=1.25; void GroupedView::setup() { int height=QApplication::fontMetrics().height(); - sizeAdjust=Utils::touchFriendly() ? 1.5 : 1.0; + sizeAdjust=Utils::touchFriendly() ? 1.5 : 1.25; if (height>17) { - constCoverSize=(((int)((height*2)/4))*4)*sizeAdjust; + constCoverSize=(((int)((height*2)/4))*4); constIconSize=Icon::stdSize(((int)(height/4))*4); constBorder=constCoverSize>48 ? 2 : 1; } else {