[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25454] trunk/blender/release/scripts/ui/ properties_data_armature_rigify.py: rigify graph was using xdot path on my system, this isnt portable but at least will work on a linux system with gnome and graphvis .

Campbell Barton ideasman42 at gmail.com
Thu Dec 17 22:53:33 CET 2009


Revision: 25454
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25454
Author:   campbellbarton
Date:     2009-12-17 22:53:33 +0100 (Thu, 17 Dec 2009)

Log Message:
-----------
rigify graph was using xdot path on my system, this isnt portable but at least will work on a linux system with gnome and graphvis.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_data_armature_rigify.py

Modified: trunk/blender/release/scripts/ui/properties_data_armature_rigify.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_armature_rigify.py	2009-12-17 21:20:18 UTC (rev 25453)
+++ trunk/blender/release/scripts/ui/properties_data_armature_rigify.py	2009-12-17 21:53:33 UTC (rev 25454)
@@ -239,9 +239,8 @@
 
         if saved:
             # if we seriously want this working everywhere we'll need some new approach
-            #os.system("dot -Tpng %s > %s; gnome-open %s &" % (path_dot, path_png, path_png))
-            os.system("python /b/xdot.py '%s' &" % path_dot)
-            
+            os.system("dot -Tpng %s > %s; gnome-open %s &" % (path_dot, path_png, path_png))
+            #os.system("python /b/xdot.py '%s' &" % path_dot)
 
         return ('FINISHED',)
 





More information about the Bf-blender-cvs mailing list