From 2e81934245e6d59020e7f4412ed532d3f330074e Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Thu, 4 Apr 2013 09:32:06 +0200 Subject: [PATCH] Issue 3305: footnote-footer-padding is not considered correctly Sign error because of self-defeatingly clever use of ?: operator. This patch does not cure the obfuscation, merely fixes the resulting error. --- lily/page-spacing.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lily/page-spacing.cc b/lily/page-spacing.cc index c2988d8502..a705827d22 100644 --- a/lily/page-spacing.cc +++ b/lily/page-spacing.cc @@ -102,8 +102,8 @@ Page_spacing::account_for_footnotes (Line_details const &line) : 0.0)) + (footnote_height - - (has_footnotes_ - ? breaker_->footnote_padding () + breaker_->footnote_footer_padding () + + (has_footnotes_ + ? - breaker_->footnote_padding () + breaker_->footnote_footer_padding () : 0.0)); } -- 2.39.5