Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions panels/dock/taskmanager/dockglobalelementmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,14 @@ QVariant DockGlobalElementModel::data(const QModelIndex &index, int role) const
QModelIndex groupIndex = model->index(row, 0);
return groupIndex.data(TaskManager::WindowsRole).toStringList();
}
case TaskManager::ActiveRole:
case TaskManager::AttentionRole: {
if (model == m_activeAppModel) {
return model->index(row, 0).data(role);
}
return false;
}

case TaskManager::MenusRole: {
return getMenus(index);
}
Expand Down
Loading