Cleanup: use more explicit check for buttons context
This commit is contained in:
@@ -785,8 +785,11 @@ int buttons_context(const bContext *C, const char *member, bContextDataResult *r
|
||||
SpaceProperties *sbuts = CTX_wm_space_properties(C);
|
||||
ButsContextPath *path = sbuts ? sbuts->path : NULL;
|
||||
|
||||
/* A zero sized path will be set for 'BCONTEXT_TOOL'. */
|
||||
if (!path || !path->len) {
|
||||
if (sbuts->mainb == BCONTEXT_TOOL) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!path) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user