summaryrefslogtreecommitdiffstats
path: root/generic/tkObj.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-03-07 14:25:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-03-07 14:25:24 (GMT)
commit3735df693e40747f75a72c5863218b55c9c97733 (patch)
tree9e54688720c5829660d87bab64646b8ff3db701e /generic/tkObj.c
parentdbdc1e7d7796af768634370b8fb17f310daa3e97 (diff)
parent8b20f97cd708a08204f37cb20c58061fe8e323bc (diff)
downloadtk-3735df693e40747f75a72c5863218b55c9c97733.zip
tk-3735df693e40747f75a72c5863218b55c9c97733.tar.gz
tk-3735df693e40747f75a72c5863218b55c9c97733.tar.bz2
* generic/tkObj.c (GetPixelsFromObjEx): [Bug 3497848]: Better rounding
of pixel values to integers.
Diffstat (limited to 'generic/tkObj.c')
-rw-r--r--generic/tkObj.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c
index 7affac4..2e45e0e 100644
--- a/generic/tkObj.c
+++ b/generic/tkObj.c
@@ -211,7 +211,7 @@ GetPixelsFromObjEx(
if (dblPtr != NULL) {
*dblPtr = d;
}
- *intPtr = (int) d;
+ *intPtr = (int) (d<0 ? d-0.5 : d+0.5);
return TCL_OK;
} else if (objPtr->typePtr == typeCache->intTypePtr) {
(void) Tcl_GetIntFromObj(interp, objPtr, intPtr);
@@ -253,11 +253,7 @@ GetPixelsFromObjEx(
d *= bias[pixelPtr->units] * WidthOfScreen(Tk_Screen(tkwin));
d /= WidthMMOfScreen(Tk_Screen(tkwin));
}
- if (d < 0) {
- pixelPtr->returnValue = (int) (d - 0.5);
- } else {
- pixelPtr->returnValue = (int) (d + 0.5);
- }
+ pixelPtr->returnValue = (int) (d<0 ? d-0.5 : d+0.5);
pixelPtr->tkwin = tkwin;
if (dblPtr) {
*dblPtr = d;