Fix build error in previous commit

Likely caused by incorrect merge when landing PR.
This commit is contained in:
Richard Antalik
2025-09-03 18:31:29 +02:00
parent 098be390ca
commit ff2fe55c5d

View File

@@ -2427,7 +2427,7 @@ static wmOperatorStatus vse_circle_select_exec(bContext *C, wmOperator *op)
float x_radius = radius / UI_view2d_scale_get_x(v2d);
float y_radius = radius / UI_view2d_scale_get_y(v2d);
bool changed = false;
LISTBASE_FOREACH (Strip *, strip, ed->seqbasep) {
LISTBASE_FOREACH (Strip *, strip, ed->current_strips()) {
rctf rq;
strip_rectf(scene, strip, &rq);
/* Use custom function to check the distance because in timeline the circle is a ellipse. */