| 327 | ControllerMacroWidget::~ControllerMacroWidget() = default; |
| 328 | |
| 329 | void ControllerMacroWidget::updateListItem(u32 index) |
| 330 | { |
| 331 | //: This is the full text that appears in each option of the 16 available macros, and reads like this:\n\nMacro 1\nNot Configured/Buttons configured |
| 332 | m_ui.portList->item(static_cast<int>(index))->setText(tr("Macro %1\n%2").arg(index + 1).arg(m_macros[index]->getSummary())); |
| 333 | } |
| 334 | |
| 335 | void ControllerMacroWidget::createWidgets(ControllerBindingWidget* parent) |
| 336 | { |
no test coverage detected