Fix assigning shortcuts that include array indices

Assigning a shortcut to bone layers for example,
raised a Python exception when used.
This commit is contained in:
2021-08-31 12:30:45 +10:00
parent 63a5f723d6
commit ea575744b8

View File

@@ -71,7 +71,7 @@ static IDProperty *shortcut_property_from_rna(bContext *C, uiBut *but)
/* If this returns null, we won't be able to bind shortcuts to these RNA properties.
* Support can be added at #wm_context_member_from_ptr. */
char *final_data_path = WM_context_path_resolve_property_full(
C, &but->rnapoin, but->rnaprop, -1);
C, &but->rnapoin, but->rnaprop, but->rnaindex);
if (final_data_path == NULL) {
return NULL;
}