From: Dan Eble Date: Sat, 7 Feb 2015 15:44:00 +0000 (-0500) Subject: Add rest style 'z for mirrored-z quarter rests. X-Git-Tag: release/2.19.16-1~2^2~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0fb68b6e1f4bbc90e173528a2f25a0672b04cd98;p=lilypond.git Add rest style 'z for mirrored-z quarter rests. The glyph was added in e3c51326b986bb56f068f70d9c5e999c5fcfc36d. --- diff --git a/lily/rest.cc b/lily/rest.cc index 9e5dc046e1..4f05764296 100644 --- a/lily/rest.cc +++ b/lily/rest.cc @@ -199,11 +199,10 @@ Rest::glyph_name (Grob *me, int durlog, const string &style, bool try_ledgers, actual_style = ""; } - if ((style == "classical") && (durlog != 2)) + if (((style == "classical") || (style == "z")) && (durlog != 2)) { /* - classical style: revert back to default style for any rest other - than quarter rest + these styles differ from the default in quarter rests only */ actual_style = ""; }