From ce0e612c19101dcfb46bbc0e5a6161fa93473fcf Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Mon, 22 Jul 2013 18:57:02 +0000 Subject: [PATCH] Fix missing actions in arftists view! Oops... --- models/musicmodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/musicmodel.cpp b/models/musicmodel.cpp index b3c6a80fe..3e825b704 100644 --- a/models/musicmodel.cpp +++ b/models/musicmodel.cpp @@ -214,7 +214,7 @@ QVariant MusicModel::data(const QModelIndex &index, int role) const } } default: - return QVariant(); + break; } - return QVariant(); + return ActionModel::data(index, role); }