X11EmbedContainer: Fix XEMBED protocol implementation

This commit is contained in:
Lukas W
2017-04-08 17:11:56 +02:00
parent e661d26f42
commit adef05fb71
7 changed files with 153 additions and 254 deletions

View File

@@ -392,6 +392,20 @@ void RemotePlugin::processMidiEvent( const MidiEvent & _e,
unlock();
}
void RemotePlugin::showUI()
{
lock();
sendMessage( IdShowUI );
unlock();
}
void RemotePlugin::hideUI()
{
lock();
sendMessage( IdHideUI );
unlock();
}