Skip to content

Commit

Permalink
Fix debug pixel at primitive and event message mixing parameter order up
Browse files Browse the repository at this point in the history
  • Loading branch information
w-pearson authored and baldurk committed Aug 15, 2023
1 parent cd89706 commit a214ffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qrenderdoc/Windows/PixelHistoryView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -848,8 +848,8 @@ void PixelHistoryView::on_events_customContextMenuRequested(const QPoint &pos)
debugText = tr("&Debug Pixel (%1, %2) primitive %3 at Event %4")
.arg(m_Pixel.x())
.arg(m_Pixel.y())
.arg(tag.eventId)
.arg(tag.primitive);
.arg(tag.primitive)
.arg(tag.eventId);

contextMenu.addAction(&jumpAction);
}
Expand Down

0 comments on commit a214ffc

Please sign in to comment.