Make icecast items 'selectable' by default.

Fixes issue 2034.
This commit is contained in:
Tyler Rhodes 2011-07-05 19:48:58 +00:00
parent c8305c0eee
commit 9f58fb6ded
1 changed files with 2 additions and 1 deletions

View File

@ -189,7 +189,8 @@ Qt::ItemFlags IcecastModel::flags(const QModelIndex& index) const {
case IcecastItem::Type_Root:
case IcecastItem::Type_Divider:
default:
return Qt::ItemIsEnabled;
return Qt::ItemIsSelectable |
Qt::ItemIsEnabled;
}
}