Add some missing tooltips for event browser location buttons

This commit is contained in:
baldurk
2022-05-06 13:17:09 +01:00
parent e5000ff91b
commit 8d34ea577d
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -319,12 +319,13 @@ void MarkerBreadcrumbs::AddPathButton(const ActionDescription *action)
{
RDToolButton *b = new RDToolButton();
b->setText(action ? QString(action->customName) : QString());
b->setToolTip(b->text());
if(!action)
{
b->setIcon(Icons::house());
b->setToolButtonStyle(Qt::ToolButtonIconOnly);
b->setToolTip(tr("Capture Root"));
}
b->setToolTip(b->text());
bool hasChildMarkers = false;