add timecode units/alignment/probe, add prefs auto_rotate,
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / delayaudio / delayaudio.C
index 561b29e13e5039b6acdca662cc96f960eda81ade..22c32f62f5115e91330e13c8008e1cbe2570f892 100644 (file)
@@ -205,7 +205,7 @@ void DelayAudio::update_gui()
 
 
 DelayAudioWindow::DelayAudioWindow(DelayAudio *plugin)
- : PluginClientWindow(plugin, 285, 80, 285, 80, 0)
+ : PluginClientWindow(plugin, xS(200), yS(80), xS(200), yS(80), 0)
 {
        this->plugin = plugin;
 }
@@ -216,12 +216,14 @@ DelayAudioWindow::~DelayAudioWindow()
 
 void DelayAudioWindow::create_objects()
 {
-       add_subwindow(new BC_Title(10, 10, _("Delay seconds:")));
+       int xs10 = xS(10);
+       int ys10 = yS(10), ys40 = yS(40);
+       add_subwindow(new BC_Title(xs10, ys10, _("Delay seconds:")));
        length = new DelayAudioTextBox(
                plugin,
                this,
-               10,
-               40);
+               xs10,
+               ys40);
        length->create_objects();
        update_gui();
        show_window();