Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_operator_type.c
| Show First 20 Lines • Show All 74 Lines • ▼ Show 20 Lines | if (idname[0]) { | ||||
| WM_operator_bl_idname(idname_bl, idname); | WM_operator_bl_idname(idname_bl, idname); | ||||
| ot = BLI_ghash_lookup(global_ops_hash, idname_bl); | ot = BLI_ghash_lookup(global_ops_hash, idname_bl); | ||||
| if (ot) { | if (ot) { | ||||
| return ot; | return ot; | ||||
| } | } | ||||
| if (!quiet) { | if (!quiet) { | ||||
| CLOG_INFO(WM_LOG_OPERATORS, 0, "search for unknown operator '%s', '%s'\n", idname_bl, idname); | CLOG_INFO(WM_LOG_OPERATORS, 0, "search for unknown operator '%s', '%s'", idname_bl, idname); | ||||
| } | } | ||||
| } | } | ||||
| else { | else { | ||||
| if (!quiet) { | if (!quiet) { | ||||
| CLOG_INFO(WM_LOG_OPERATORS, 0, "search for empty operator"); | CLOG_INFO(WM_LOG_OPERATORS, 0, "search for empty operator"); | ||||
| } | } | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 476 Lines • Show Last 20 Lines | |||||