Categorized Combo: Do not draw category line if the combo has zero categories

This commit is contained in:
Juergen Spitzmueller 2020-04-23 08:31:50 +02:00
parent a9668f1cae
commit 631d6b9b2e

View File

@ -153,7 +153,8 @@ void CCItemDelegate::paint(QPainter * painter, QStyleOptionViewItem const & opti
QString cat = categoryCC(*index.model(), index.row());
// not the same as in the previous line?
if (index.row() == 0 || cat != categoryCC(*index.model(), index.row() - 1)) {
if (cc_->d->visibleCategories_ > 0
&& (index.row() == 0 || cat != categoryCC(*index.model(), index.row() - 1))) {
painter->save();
// draw unselected background