From: David Kastrup Date: Mon, 3 Jun 2013 17:12:27 +0000 (+0200) Subject: Issue 3395: Let Flag grob inherit color and transparent from its stem by default X-Git-Tag: release/2.17.20-1~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e41212cd9bc9ca372d201ab4661b1863f1b3f368;p=lilypond.git Issue 3395: Let Flag grob inherit color and transparent from its stem by default --- diff --git a/scm/define-grobs.scm b/scm/define-grobs.scm index 4d015b7658..c1afa7dda2 100644 --- a/scm/define-grobs.scm +++ b/scm/define-grobs.scm @@ -976,6 +976,10 @@ . ( (glyph-name . ,ly:flag::glyph-name) (stencil . ,ly:flag::print) + (transparent . ,(grob::inherit-parent-property + X 'transparent)) + (color . ,(grob::inherit-parent-property + X 'color)) (X-extent . ,ly:flag::width) (X-offset . ,ly:flag::calc-x-offset) (Y-offset . ,(ly:make-unpure-pure-container ly:flag::calc-y-offset ly:flag::pure-calc-y-offset))