>From 0cfeca9c71bde48e2cc969b0075d1cebf801b600 Mon Sep 17 00:00:00 2001 From: Lukas-Fabian Moser Date: Fri, 5 Jul 2019 16:45:31 +0200 Subject: [PATCH 2/2] Maintain float precision during calculation of attachment of noteheads to chord (thus completing the transition from int-calculations to floats introduced in e7cb72c9fce). --- lily/stem.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/stem.cc b/lily/stem.cc index 34bf557fca..2a0f6fef84 100644 --- a/lily/stem.cc +++ b/lily/stem.cc @@ -626,7 +626,7 @@ Stem::calc_positioning_done (SCM smob) else parity = true; - lastpos = int (round (p)); + lastpos = p; } return SCM_BOOL_T; -- 2.17.1