Canvas: do not fill containers by default (added during constraint packing work; badly affects the regular canvas)
This commit is contained in:
parent
10473ab3a6
commit
fa2885d2d6
@ -46,7 +46,7 @@ Container::prepare_for_render (Rect const & area) const
|
|||||||
void
|
void
|
||||||
Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
|
Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
|
||||||
{
|
{
|
||||||
if (fill() || outline()) {
|
if (0 && (fill() || outline())) {
|
||||||
|
|
||||||
Rect bb (bounding_box());
|
Rect bb (bounding_box());
|
||||||
Rect self (item_to_window (bb, false));
|
Rect self (item_to_window (bb, false));
|
||||||
|
Loading…
Reference in New Issue
Block a user