Ticket #40979: patch-drawlabel.cc.2.diff
File patch-drawlabel.cc.2.diff, 551 bytes (added by mf2k (Frank Schima), 10 years ago) |
---|
-
drawlabel.cc
old new 75 75 bool Latex=latex(texengine); 76 76 77 77 if(Latex) { 78 if(setlatexfont(tex,pentype,drawElement::lastpen)) 79 tex.wait("\n*"); 78 if(setlatexfont(tex,pentype,drawElement::lastpen)) { 79 tex << "\n"; 80 tex.wait(texready.c_str()); 81 } 80 82 } 81 if(settexfont(tex,pentype,drawElement::lastpen,Latex)) 82 tex.wait("\n*"); 83 if(settexfont(tex,pentype,drawElement::lastpen,Latex)) { 84 tex << "\n"; 85 tex.wait(texready.c_str()); 86 } 83 87 84 88 drawElement::lastpen=pentype; 85 89 }