1
0
Fork 0

Keeping the style (nice icons) for the CallStackView

This commit is contained in:
foralost 2023-11-26 18:16:02 +01:00
parent 03baaa1ae3
commit 911329e8e6
1 changed files with 2 additions and 2 deletions

View File

@ -71,13 +71,13 @@ void CallStackView::setupContextMenu()
});
mMenuBuilder->addSeparator();
QAction* followInThreads = makeAction(tr("Follow in Threads"), SLOT(followInThreadsSlot()));
QAction* followInThreads = makeAction(DIcon("arrow-threads"), tr("Follow in Threads"), SLOT(followInThreadsSlot()));
mMenuBuilder->addAction(followInThreads, [this](QMenu*)
{
return isThreadHeaderSelected();
});
QAction* renameThread = makeAction(tr("Rename Thread"), SLOT(renameThreadSlot()));
QAction* renameThread = makeAction(DIcon("thread-setname"), tr("Rename Thread"), SLOT(renameThreadSlot()));
mMenuBuilder->addAction(renameThread, [this](QMenu*)
{
return isThreadHeaderSelected();