Skip to content
Snippets Groups Projects
Commit 6ad3c4c1 authored by Olivier Couet's avatar Olivier Couet
Browse files

Fix an issue with transparent pads in TTextDump.

parent eccd0ff0
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
- Text color was ignored. It was always black.
- Text color was ignored. It was always black.
- The underscore `_` produced an error outside the TeX math context.
- Fix an issue with transparent pads.
### TPostScript
......
......@@ -254,7 +254,7 @@ void TTeXDump::DrawBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
PrintFast(1,",");
WriteReal(y2c, kFALSE);
PrintStr(");");
} else if (fillis>1) {
} else if (fillis>1 && fillis<4) {
SetColor(fFillColor);
PrintStr("@");
PrintStr("\\draw [pattern=");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment