From cc15e88adff5674efd0c2957bf35a818cf27c8a1 Mon Sep 17 00:00:00 2001
From: Olivier Couet <Olivier.Couet@cern.ch>
Date: Tue, 19 Sep 2006 14:27:39 +0000
Subject: [PATCH] - In DrawPolyMarker the line style and line width were not
 correctly reset.

git-svn-id: http://root.cern.ch/svn/root/trunk@16297 27541ba8-7e3a-0410-8455-c3a389f83636
---
 postscript/src/TPostScript.cxx | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/postscript/src/TPostScript.cxx b/postscript/src/TPostScript.cxx
index 7cfd1de0623..360b448125c 100644
--- a/postscript/src/TPostScript.cxx
+++ b/postscript/src/TPostScript.cxx
@@ -1,4 +1,4 @@
-// @(#)root/postscript:$Name:  $:$Id: TPostScript.cxx,v 1.65 2006/05/11 15:50:52 couet Exp $
+// @(#)root/postscript:$Name:  $:$Id: TPostScript.cxx,v 1.66 2006/07/12 14:01:32 couet Exp $
 // Author: Rene Brun, Olivier Couet, Pierre Juillot   29/11/94
 
 /*************************************************************************
@@ -986,6 +986,8 @@ void TPostScript::DrawPolyMarker(Int_t n, Float_t *x, Float_t *y)
          np = 0;
       }
    }
+   SetLineStyle(linestylesav);
+   SetLineWidth(linewidthsav);
 }
 
 //______________________________________________________________________________
@@ -1045,6 +1047,8 @@ void TPostScript::DrawPolyMarker(Int_t n, Double_t *x, Double_t *y)
          np = 0;
       }
    }
+   SetLineStyle(linestylesav);
+   SetLineWidth(linewidthsav);
 }
 
 
-- 
GitLab