Fix: Channel select keys doesn't add undo step #107887

Merged
Christoph Lendenfeld merged 2 commits from ChrisLend/blender:fix_channel_box_undo_step into blender-v3.6-release 2023-05-26 17:00:30 +02:00
1 changed files with 2 additions and 0 deletions

View File

@ -3951,6 +3951,8 @@ static void ANIM_OT_channel_select_keys(wmOperatorType *ot)
ot->invoke = animchannels_channel_select_keys_invoke;
ot->poll = animedit_poll_channels_active;
ot->flag = OPTYPE_UNDO;
prop = RNA_def_boolean(ot->srna, "extend", false, "Extend", "Extend selection");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}