Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27307]trunk/blender/release/scripts/op/ image.py: ok now all 3 major platformsshould work

2010-03-07 Thread Campbell Barton
image editor can now be selected in the user preferences. when thats not set its calling open form mac, startfile from windows and gimp on anything else. I cant test these so assume Ill hear complaints if they dont work. On Sun, Mar 7, 2010 at 10:56 AM, wrote: > As everybody does not use the sam

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27307]trunk/blender/release/scripts/op/ image.py: ok now all 3 major platformsshould work

2010-03-07 Thread jmsoler
As everybody does not use the same version of gimp, an environment variable isn't it preferable ? Selon venom...@gmail.com: > +if platform == 'win32': > +EDITOR = "C:\\Program Files\\GIMP-2.7\\bin\\gimp-2.7.exe" > > An absolute path (english an version exclusive (in spanish wo

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27307]trunk/blender/release/scripts/op/ image.py: ok now all 3 major platformsshould work

2010-03-06 Thread Elia Sarti
It would be better to use the %ProgramFiles% environment variable, e.g. os.environ['PROGRAMFILES'] This keeps it language independent Tom M wrote, on 03/07/2010 06:07 AM: > On Sat, Mar 6, 2010 at 10:56 PM, wrote: > >> +if platform == 'win32': >> +EDITOR = "C:\\Program Fi

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27307]trunk/blender/release/scripts/op/ image.py: ok now all 3 major platformsshould work

2010-03-06 Thread Tom M
On Sat, Mar 6, 2010 at 10:56 PM, wrote: > +        if platform == 'win32': > +            EDITOR = "C:\\Program Files\\GIMP-2.7\\bin\\gimp-2.7.exe" > > An absolute path (english an version exclusive (in spanish would be "Archivos > de Programa" instead of Program Files)) inside Blender? It is j

[Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27307]trunk/blender/release/scripts/op/ image.py: ok now all 3 major platformsshould work

2010-03-06 Thread venomgfx
+if platform == 'win32': +EDITOR = "C:\\Program Files\\GIMP-2.7\\bin\\gimp-2.7.exe" An absolute path (english an version exclusive (in spanish would be "Archivos de Programa" instead of Program Files)) inside Blender? (Just wondering, maybe was a typo) --Original Message