diff --git a/ChangeLog b/ChangeLog index 601b033f8..3fd166472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,6 +29,7 @@ URL is displayed. 6. Fix covers when using album artist for multiple artist albums, and album artist name is "Various Artists" - but this has been translated in Cantata. +7. Dont draw item divider in icon views. 1.1.1 ----- diff --git a/widgets/itemview.cpp b/widgets/itemview.cpp index d99603e53..f007b5843 100644 --- a/widgets/itemview.cpp +++ b/widgets/itemview.cpp @@ -315,7 +315,9 @@ public: if (drawBgnd && mouseOver) { drawIcons(painter, AP_VTop==actionPos ? r2 : r, true, rtl, actionPos, index); } - drawDivider(painter, option.rect, color); + if (!iconMode) { + drawDivider(painter, option.rect, color); + } painter->restore(); }