From dda9303c69c1a5280c1e8c9696767ba7bafd073f Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 31 Aug 2020 11:03:01 +0300 Subject: [PATCH] 0031743: Draw Harness - fix misprint in Draw_Interpretor::SetToColorize() --- src/Draw/Draw_Interpretor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Draw/Draw_Interpretor.cxx b/src/Draw/Draw_Interpretor.cxx index 53f42be609..b6655f5a3a 100644 --- a/src/Draw/Draw_Interpretor.cxx +++ b/src/Draw/Draw_Interpretor.cxx @@ -299,7 +299,7 @@ void Draw_Interpretor::SetToColorize (Standard_Boolean theToColorize) { if (Handle(Message_PrinterOStream) aPrinter = Handle(Message_PrinterOStream)::DownCast (aPrinterIter.Value())) { - aPrinter->SetToColorize (Standard_False); + aPrinter->SetToColorize (theToColorize); } } } -- 2.20.1