Cleanup: rename 'name' to 'filepath' for DNA types
Using 'name' for the full path of a file reads badly, especially when id.name is used in related code.
This commit is contained in:
		@@ -2498,7 +2498,7 @@ static int pyrna_prop_collection_subscript_str_lib_pair_ptr(BPy_PropertyRNA *sel
 | 
			
		||||
    else if (PyUnicode_Check(keylib)) {
 | 
			
		||||
      Main *bmain = self->ptr.data;
 | 
			
		||||
      const char *keylib_str = _PyUnicode_AsString(keylib);
 | 
			
		||||
      lib = BLI_findstring(&bmain->libraries, keylib_str, offsetof(Library, name));
 | 
			
		||||
      lib = BLI_findstring(&bmain->libraries, keylib_str, offsetof(Library, filepath));
 | 
			
		||||
      if (lib == NULL) {
 | 
			
		||||
        if (err_not_found) {
 | 
			
		||||
          PyErr_Format(PyExc_KeyError,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user