mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
Source list UI with Initials of source and name
This commit is contained in:
@@ -6011,7 +6011,7 @@ void Navigator::RenderNewPannel()
|
||||
SourceList::iterator iter;
|
||||
for (iter = Mixer::manager().session()->begin(); iter != Mixer::manager().session()->end(); ++iter)
|
||||
{
|
||||
label = std::string("Source ") + (*iter)->name();
|
||||
label = std::string("Source ") + (*iter)->initials() + " - " + (*iter)->name();
|
||||
if (ImGui::Selectable( label.c_str() )) {
|
||||
label = std::string("Clone of ") + label;
|
||||
new_source_preview_.setSource( Mixer::manager().createSourceClone((*iter)->name()),label);
|
||||
|
||||
Reference in New Issue
Block a user