mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-17 19:24:52 -04:00
Support for alternative tunings and keyboard mappings (#5522)
Co-authored-by: Kevin Zander <veratil@gmail.com> Co-authored-by: Dominic Clark <mrdomclark@gmail.com> Co-authored-by: Martin <martin@sigma.he29.net>
This commit is contained in:
@@ -35,6 +35,12 @@ void ComboBoxModel::addItem( QString item, unique_ptr<PixmapLoader> loader )
|
||||
}
|
||||
|
||||
|
||||
void ComboBoxModel::replaceItem(std::size_t index, QString item, unique_ptr<PixmapLoader> loader)
|
||||
{
|
||||
assert(index < m_items.size());
|
||||
m_items[index] = Item(move(item), move(loader));
|
||||
emit propertiesChanged();
|
||||
}
|
||||
|
||||
|
||||
void ComboBoxModel::clear()
|
||||
|
||||
Reference in New Issue
Block a user