Tweak error message when external image editor launching fails.

Include idea that Blender may fail to launch it even if path is correct,
in some cases (dear Windows...).

Based on idea from @lijenstina and @blendify (D2349), thanks.
This commit is contained in:
Bastien Montagne 2016-12-28 14:09:02 +01:00
parent b1c6ddb107
commit cabd2dceca
1 changed files with 2 additions and 2 deletions

View File

@ -82,8 +82,8 @@ class EditExternally(Operator):
import traceback
traceback.print_exc()
self.report({'ERROR'},
"Image editor not found, "
"please specify in User Preferences > File")
"Image editor could not be launched, please ensure that "
"the path in User Preferences > File is valid, and Blender has rights to launch it")
return {'CANCELLED'}