mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-08 00:40:02 +01:00
Added edit menu in New source panel
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user