Add display name fields to controller and zone instead of editing the existing name field

This commit is contained in:
Adam Honse
2026-06-04 01:19:04 -05:00
parent c6fe1e7023
commit c3bd47fe60
17 changed files with 309 additions and 178 deletions

View File

@@ -146,10 +146,10 @@ void OpenRGBZoneInitializationDialog::CreateZoneWidget(RGBController* controller
| Labels: controller name + zone name |
\*---------------------------------------------------------*/
QLabel* controller_label = new QLabel(this);
controller_label->setText(QString::fromStdString(controller->GetName()));
controller_label->setText(QString::fromStdString(controller->GetDisplayName()));
QLabel* zone_label = new QLabel(this);
zone_label->setText(QString::fromStdString(controller->GetZoneName(zone_index)));
zone_label->setText(QString::fromStdString(controller->GetZoneDisplayName(zone_index)));
/*---------------------------------------------------------*\
| Spin box: controls the zone size |