grid.c, adding a 'poor man's' title to the postscript output
This commit is contained in:
parent
fbc9ea6ca6
commit
45df480d15
|
|
@ -146,6 +146,11 @@ gr_redrawgrid(GRAPH *graph)
|
||||||
graph->absolute.height / 2);
|
graph->absolute.height / 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* draw postscript title */
|
||||||
|
if (graph->plotname && eq(dispdev->name, "postscript"))
|
||||||
|
DevDrawText(graph->plotname,
|
||||||
|
graph->fontwidth,
|
||||||
|
graph->absolute.height - graph->fontheight);
|
||||||
|
|
||||||
switch (graph->grid.gridtype) {
|
switch (graph->grid.gridtype) {
|
||||||
case GRID_POLAR:
|
case GRID_POLAR:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue