Revision: 4391
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4391&view=rev
Author:   mdboom
Date:     2007-11-20 05:29:20 -0800 (Tue, 20 Nov 2007)

Log Message:
-----------
Fix problem with 0-line width drawing in Postscript.  (Thanks Ben North).

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/backends/backend_ps.py

Modified: trunk/matplotlib/lib/matplotlib/backends/backend_ps.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_ps.py      2007-11-20 
13:20:54 UTC (rev 4390)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_ps.py      2007-11-20 
13:29:20 UTC (rev 4391)
@@ -947,6 +947,9 @@
 
         if self.linewidth > 0:
             write("stroke\n")
+        else:
+            write("newpath\n")
+            
         if cliprect:
             write("grestore\n")
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to