mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue