Asset Catalogs: mark 'undo push' operator as internal

Mark the `ASSET_OT_catalog_undo_push` operator as internal, as it's not
meant for artists to use directly.
This commit is contained in:
Sybren A. Stüvel
2021-10-12 15:11:13 +02:00
parent a7300a217d
commit 7867feae56

View File

@@ -553,6 +553,9 @@ static void ASSET_OT_catalog_undo_push(struct wmOperatorType *ot)
/* api callbacks */
ot->exec = asset_catalog_undo_push_exec;
ot->poll = asset_catalog_undo_push_poll;
/* Generally artists don't need to find & use this operator, it's meant for scripts only. */
ot->flag = OPTYPE_INTERNAL;
}
/* -------------------------------------------------------------------- */