summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorculler <culler>2024-07-22 19:51:20 (GMT)
committerculler <culler>2024-07-22 19:51:20 (GMT)
commit64a58f2cb2f439a85bbf7188b4cf2b9366a6ce55 (patch)
tree8609f17a2f1ce103dd76bffb07c4645aefeb5fe7 /generic
parent3002f43fb121e7781eace43f164b586e703a0230 (diff)
downloadtk-64a58f2cb2f439a85bbf7188b4cf2b9366a6ce55.zip
tk-64a58f2cb2f439a85bbf7188b4cf2b9366a6ce55.tar.gz
tk-64a58f2cb2f439a85bbf7188b4cf2b9366a6ce55.tar.bz2
Put the decimal point in the right place.
Diffstat (limited to 'generic')
-rw-r--r--generic/tkObj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkObj.c b/generic/tkObj.c
index cb7030e..b0f7897 100644
--- a/generic/tkObj.c
+++ b/generic/tkObj.c
@@ -549,7 +549,7 @@ Tk_GetMMFromObj(
double d;
MMRep *mmPtr;
static const double bias[] = {
- 10.0, 25.4, 1.0, 0.35278 /*25.4 / 72.0*/
+ 10.0, 25.4, 1.0, 0.352777777777777777 /*25.4 / 72.0*/
};
if (objPtr->typePtr != &mmObjType) {