diff options
author | joye <joye> | 2014-07-02 21:45:05 (GMT) |
---|---|---|
committer | joye <joye> | 2014-07-02 21:45:05 (GMT) |
commit | b7d72e5e164f3fd65ebbfbcf95a1eb42ff45a990 (patch) | |
tree | 7751a1d46ca3f9438eaf69842687a509fafc2a06 /src | |
parent | 294f3433210ab54840ea2dba6a57c66bd2fa4a92 (diff) | |
download | blt-b7d72e5e164f3fd65ebbfbcf95a1eb42ff45a990.zip blt-b7d72e5e164f3fd65ebbfbcf95a1eb42ff45a990.tar.gz blt-b7d72e5e164f3fd65ebbfbcf95a1eb42ff45a990.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/bltGrElemBar.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bltGrElemBar.C b/src/bltGrElemBar.C index f97ffc4..cb002c2 100644 --- a/src/bltGrElemBar.C +++ b/src/bltGrElemBar.C @@ -832,7 +832,7 @@ void BarElement::printSymbol(PSOutput* psPtr, double x, double y, int size) if (pops->outlineColor) { psPtr->setForeground(pops->outlineColor); - psPtr->printRectangle(x, y, size-1, size-1); + psPtr->printRectangle(x, y, size, size); } } @@ -1266,7 +1266,7 @@ void BarElement::printSegments(PSOutput* psPtr, BarPen* penPtr, if (pops->outlineColor) { psPtr->setForeground(pops->outlineColor); psPtr->printRectangle((double)rp->x, (double)rp->y, - (int)rp->width - 1, (int)rp->height - 1); + (int)rp->width, (int)rp->height); } } } |