X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Freframert%2Freframert.C;fp=cinelerra-5.1%2Fplugins%2Freframert%2Freframert.C;h=9558a3432baaf9168172f308a8c76af5d9240851;hb=0df48ad2d876409c5beeae2e21933a728ea76c33;hp=1c52881f37c22d0a9e7ea48de7bb093c1593c88d;hpb=bd570c5fa5f5473b670673368dc30356aa6c43fa;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/reframert/reframert.C b/cinelerra-5.1/plugins/reframert/reframert.C index 1c52881f..9558a343 100644 --- a/cinelerra-5.1/plugins/reframert/reframert.C +++ b/cinelerra-5.1/plugins/reframert/reframert.C @@ -108,7 +108,7 @@ void ReframeRTConfig::boundaries() ReframeRTWindow::ReframeRTWindow(ReframeRT *plugin) - : PluginClientWindow(plugin, 230, 235, 230, 235, 0) + : PluginClientWindow(plugin, xS(230), yS(235), xS(230), yS(235), 0) { this->plugin = plugin; } @@ -144,11 +144,11 @@ void ReframeRTWindow::create_objects() y += denom->get_h() + plugin->get_theme()->widget_border; add_subwindow(stretch = new ReframeRTStretch(plugin, this, x, y)); - y += 30; + y += yS(30); add_subwindow(downsample = new ReframeRTDownsample(plugin, this, x, y)); - y += 30; + y += yS(30); add_subwindow(interpolate = new ReframeRTInterpolate(plugin, this, x, y)); - y += 40; + y += yS(40); add_subwindow(reset = new ReframeRTReset(plugin, this, x, y)); show_window(); }