Added edit menu in New source panel

This commit is contained in:
brunoherbelin
2021-02-28 10:19:30 +01:00
parent 13672a9d01
commit 70cc66a7f4
6 changed files with 88 additions and 27 deletions

View File

@@ -1180,6 +1180,14 @@ void Mixer::set(Session *s)
sessionSwapRequested_ = true;
}
bool Mixer::isClipboard (const std::string& text)
{
if (text.size() > 6 && text.substr(0, 6) == "<vimix")
return true;
return false;
}
void Mixer::paste(const std::string& clipboard)
{
if (clipboard.empty())