Skip to content

Commit

Permalink
Put the decimal point in the right place.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Jul 22, 2024
1 parent 3002f43 commit 64a58f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/tkObj.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 64a58f2

Please sign in to comment.