MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / getSummary

Method getSummary

pcsx2-qt/Settings/ControllerBindingWidget.cpp:426–436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

424ControllerMacroEditWidget::~ControllerMacroEditWidget() = default;
425
426QString ControllerMacroEditWidget::getSummary() const
427{
428 QString str;
429 for (const InputBindingInfo* bi : m_binds)
430 {
431 if (!str.isEmpty())
432 str += static_cast<QChar>('/');
433 str += qApp->translate("Pad", bi->display_name);
434 }
435 return str.isEmpty() ? tr("Not Configured") : str;
436}
437
438void ControllerMacroEditWidget::onPressureChanged()
439{

Callers 1

updateListItemMethod · 0.80

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected