mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
Rename 'name' member of ActionDescription to 'customName'
* This is a deliberate break of compatibility since the field is now often empty, for non-markers. This means code will get a more explicit error when the name is being referenced, so it can be updated to fetch the name it needs as needed.
This commit is contained in:
@@ -212,7 +212,7 @@ void APIInspector::fillAPIView()
|
||||
{
|
||||
if(action->IsFakeMarker())
|
||||
{
|
||||
RDTreeWidgetItem *root = new RDTreeWidgetItem({lit("---"), QString(action->name)});
|
||||
RDTreeWidgetItem *root = new RDTreeWidgetItem({lit("---"), QString(action->customName)});
|
||||
root->setBold(true);
|
||||
ui->apiEvents->addTopLevelItem(root);
|
||||
ui->apiEvents->setSelectedItem(root);
|
||||
|
||||
Reference in New Issue
Block a user