add wheel/gradical to vectorscope, tweak boxblur layout, chromakey booby fix
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / chromakey / chromakey.C
index c627200d2d0ea52a339aa13922bfb7c28f91d4fd..832a1d45cfe32e4035820002099de57b69173dce 100644 (file)
@@ -318,7 +318,9 @@ int ChromaKeyColorThread::handle_new_color(int output, int alpha)
        plugin->config.red = (float)(output & 0xff0000) / 0xff0000;
        plugin->config.green = (float)(output & 0xff00) / 0xff00;
        plugin->config.blue = (float)(output & 0xff) / 0xff;
+       gui->lock_window("ChromaKeyColorThread::handle_new_color");
        gui->update_sample();
+       gui->unlock_window();
        plugin->send_configure_change();
        return 1;
 }