From fa2885d2d6d6685c07e3e5c0620e08b68c82280c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 29 Jun 2020 17:25:11 -0600 Subject: [PATCH] Canvas: do not fill containers by default (added during constraint packing work; badly affects the regular canvas) --- libs/canvas/container.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/canvas/container.cc b/libs/canvas/container.cc index 5fce5b6482..d9596a67a0 100644 --- a/libs/canvas/container.cc +++ b/libs/canvas/container.cc @@ -46,7 +46,7 @@ Container::prepare_for_render (Rect const & area) const void Container::render (Rect const & area, Cairo::RefPtr context) const { - if (fill() || outline()) { + if (0 && (fill() || outline())) { Rect bb (bounding_box()); Rect self (item_to_window (bb, false));