Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_files.c
| Context not available. | |||||
| return ok; | return ok; | ||||
| } | } | ||||
| /* Check if file write permission is ok */ | /* Check if file write permission is ok. */ | ||||
| if (BLI_exists(filepath) && !BLI_file_is_writable(filepath)) { | if (BLI_exists(filepath) && !BLI_file_is_writable(filepath)) { | ||||
| BKE_reportf(reports, RPT_ERROR, "Cannot save blend file, path '%s' is not writable", filepath); | BKE_reportf(reports, RPT_ERROR, "Cannot save blend file, path \"%s\" is not writable", filepath); | ||||
| return ok; | return ok; | ||||
| } | } | ||||
| Context not available. | |||||