From 0fb68b6e1f4bbc90e173528a2f25a0672b04cd98 Mon Sep 17 00:00:00 2001 From: Dan Eble Date: Sat, 7 Feb 2015 10:44:00 -0500 Subject: [PATCH] Add rest style 'z for mirrored-z quarter rests. The glyph was added in e3c51326b986bb56f068f70d9c5e999c5fcfc36d. --- lily/rest.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 = ""; } -- 2.39.5