diff --git a/video/videofx/src/border/roundedcorners.rs b/video/videofx/src/border/roundedcorners.rs index e4999be7..d856a188 100644 --- a/video/videofx/src/border/roundedcorners.rs +++ b/video/videofx/src/border/roundedcorners.rs @@ -305,7 +305,6 @@ impl ObjectImpl for RoundedCorners { let border_radius = value.get().expect("type checked upstream"); if settings.border_radius_px != border_radius { settings.changed = true; - settings.border_radius_px = border_radius; gst::info!( CAT, obj: obj, @@ -313,6 +312,7 @@ impl ObjectImpl for RoundedCorners { settings.border_radius_px, border_radius ); + settings.border_radius_px = border_radius; obj.reconfigure_src(); } }