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 {