X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2F1080to480%2F1080to480.C;h=590d732f59251c3da5fc9245ec274c641b7ffd83;hb=81fc9cd689dd964a4736fa1f8986a64db6b4a937;hp=6b522295ea0d46caeb59df4e2b5e7cb1293ce50f;hpb=7fd85fb66168f6b518c5f2d73e04036e87faa0e1;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/1080to480/1080to480.C b/cinelerra-5.1/plugins/1080to480/1080to480.C index 6b522295..590d732f 100644 --- a/cinelerra-5.1/plugins/1080to480/1080to480.C +++ b/cinelerra-5.1/plugins/1080to480/1080to480.C @@ -72,7 +72,7 @@ void _1080to480Config::interpolate(_1080to480Config &prev, _1080to480Window::_1080to480Window(_1080to480Main *client) - : PluginClientWindow(client, 200, 100, 0, 0, 1) + : PluginClientWindow(client, xS(200), yS(100), 0, 0, 1) { this->client = client; } @@ -84,10 +84,10 @@ _1080to480Window::~_1080to480Window() void _1080to480Window::create_objects() { - int x = 10, y = 10; + int x = xS(10), y = yS(10); add_tool(odd_first = new _1080to480Option(client, this, 1, x, y, _("Odd field first"))); - y += 25; + y += yS(25); add_tool(even_first = new _1080to480Option(client, this, 0, x, y, _("Even field first"))); show_window();