| 584 | } |
| 585 | |
| 586 | juce::String PatchBrowserSelector::getSelectedEntry() { |
| 587 | for (int entry = 0; entry < m_entries.size(); ++entry) { |
| 588 | if (m_entries[entry]->isActive()) { |
| 589 | return m_entries[entry]->getText(); |
| 590 | } |
| 591 | } |
| 592 | return ""; |
| 593 | } |
no test coverage detected