mirror of
https://github.com/x64dbg/x64dbg.git
synced 2025-02-19 20:44:10 +00:00
Keeping the style (nice icons) for the CallStackView
This commit is contained in:
parent
03baaa1ae3
commit
911329e8e6
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user