Fix type which results in global fieldname templates being added to project.

This commit is contained in:
Jeff Young 2022-02-17 12:35:46 +00:00
parent d60ed70d54
commit 9584849aba
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ PANEL_TEMPLATE_FIELDNAMES::~PANEL_TEMPLATE_FIELDNAMES()
bool PANEL_TEMPLATE_FIELDNAMES::TransferDataToWindow()
{
m_fields = m_templateMgr->GetTemplateFieldNames( true );
m_fields = m_templateMgr->GetTemplateFieldNames( m_global );
return TransferDataToGrid();
}