zoomedit:

* Some scrolling tweaks
This commit is contained in:
neoraider 2008-04-15 21:47:03 +00:00
parent cfd608527e
commit b90de8c582
3 changed files with 8 additions and 11 deletions

View file

@ -187,13 +187,13 @@ void TopView::getBounds(float *minX, float *maxX, float *minY, float *maxY) {
}
if(minX)
*minX -= 5;
*minX -= 2.5f;
if(maxX)
*maxX += 5;
*maxX += 2.5f;
if(minY)
*minY -= 5;
*minY -= 2.5f;
if(maxY)
*maxY += 5;
*maxY += 2.5f;
}
}