From 9c7927af840796be8e0269d16d862ba0c9be2004 Mon Sep 17 00:00:00 2001 From: m0dB <79429057+m0dB@users.noreply.github.com> Date: Mon, 25 Sep 2023 23:12:32 +0200 Subject: [PATCH] correct baseclass --- src/library/tableitemdelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library/tableitemdelegate.cpp b/src/library/tableitemdelegate.cpp index d1b4c7280e1..5deed53a2c3 100644 --- a/src/library/tableitemdelegate.cpp +++ b/src/library/tableitemdelegate.cpp @@ -80,5 +80,5 @@ void TableItemDelegate::paintItem( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { - QStyledItemDelegate::paint(painter, option, index); + DefaultDelegate::paint(painter, option, index); }