Fix the order dissolve angle is shown in the redo panel

The ordering of the Dissolve Selection panel in edge mode now matches
the ordering of the Dissolve Edges Panel.

Ref !139958
This commit is contained in:
Jason C. Wenger
2025-06-07 12:50:55 +10:00
committed by Campbell Barton
parent 3d8fc6ba9d
commit 0087d20e9c

View File

@@ -6101,9 +6101,9 @@ void MESH_OT_dissolve_mode(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
edbm_dissolve_prop__use_verts(ot, false, PROP_SKIP_SAVE);
edbm_dissolve_prop__use_angle_threshold(ot);
edbm_dissolve_prop__use_face_split(ot);
edbm_dissolve_prop__use_boundary_tear(ot);
edbm_dissolve_prop__use_angle_threshold(ot);
}
/** \} */