13
0

Canvas: do not fill containers by default (added during constraint packing work; badly affects the regular canvas)

This commit is contained in:
Paul Davis 2020-06-29 17:25:11 -06:00
parent 10473ab3a6
commit fa2885d2d6

View File

@ -46,7 +46,7 @@ Container::prepare_for_render (Rect const & area) const
void
Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
{
if (fill() || outline()) {
if (0 && (fill() || outline())) {
Rect bb (bounding_box());
Rect self (item_to_window (bb, false));