diff --git a/src/library/stardelegate.cpp b/src/library/stardelegate.cpp index 8d000e605ae..6df2122ea7a 100644 --- a/src/library/stardelegate.cpp +++ b/src/library/stardelegate.cpp @@ -75,7 +75,7 @@ void StarDelegate::cellEntered(const QModelIndex& index) { // This slot is called if the mouse pointer enters ANY cell on the // QTableView but the code should only be executed on a column with a // StarRating. - if (index.data().canConvert(qMetaTypeId())) { + if (index.data().canConvert()) { if (m_isOneCellInEditMode) { m_pTableView->closePersistentEditor(m_currentEditedCellIndex); }