X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fechocancel%2Fechocancel.C;h=b1c4dcb8f224a3439137cc773c03dd4f6098ac4d;hp=379fbe4b33e9c228fd29f3e08f7e80892f5deda0;hb=0df48ad2d876409c5beeae2e21933a728ea76c33;hpb=bd570c5fa5f5473b670673368dc30356aa6c43fa diff --git a/cinelerra-5.1/plugins/echocancel/echocancel.C b/cinelerra-5.1/plugins/echocancel/echocancel.C index 379fbe4b..b1c4dcb8 100644 --- a/cinelerra-5.1/plugins/echocancel/echocancel.C +++ b/cinelerra-5.1/plugins/echocancel/echocancel.C @@ -133,7 +133,7 @@ int EchoCancelLevel::handle_event() EchoCancelMode::EchoCancelMode(EchoCancel *plugin, int x, int y) - : BC_PopupMenu(x, y, 120, to_text(plugin->config.mode)) + : BC_PopupMenu(x, y, xS(120), to_text(plugin->config.mode)) { this->plugin = plugin; } @@ -195,7 +195,7 @@ int EchoCancelHistory::handle_event() EchoCancelWindowSize::EchoCancelWindowSize(EchoCancel *plugin, int x, int y, const char *text) - : BC_PopupMenu(x, y, 80, text) + : BC_PopupMenu(x, y, xS(120), text) { this->plugin = plugin; } @@ -410,7 +410,7 @@ void EchoCancelCanvas::draw_overlay() EchoCancelWindow::EchoCancelWindow(EchoCancel *plugin) - : PluginClientWindow(plugin, plugin->w, plugin->h, 320, 320, 1) + : PluginClientWindow(plugin, plugin->w, plugin->h, xS(680), yS(480), 1) { this->plugin = plugin; probe_x = probe_y = -1; @@ -626,8 +626,8 @@ EchoCancel::EchoCancel(PluginServer *server) { reset(); timer = new Timer; - w = 640; - h = 480; + w = xS(640); + h = yS(480); } EchoCancel::~EchoCancel()