]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/musicexp.py
Improve predefined-fretboards
[lilypond.git] / python / musicexp.py
index b1df9417f7531cfadcddf8bd72f9cd87d6852ccd..440fcbfb3f1c12c87957c79b2f204f95b2efcf0f 100644 (file)
@@ -892,10 +892,10 @@ class BarLine (Music):
         self.type = None
         
     def print_ly (self, printer):
-        bar_symbol = { 'regular': "|", 'dotted': ":", 'dashed': ":",
+        bar_symbol = { 'regular': "|", 'dotted': ":", 'dashed': "dashed",
                        'heavy': "|", 'light-light': "||", 'light-heavy': "|.",
                        'heavy-light': ".|", 'heavy-heavy': ".|.", 'tick': "'",
-                       'short': "'", 'none': "" }.get (self.type, None)
+                       'short': "'|", 'none': "" }.get (self.type, None)
         if bar_symbol <> None:
             printer.dump ('\\bar "%s"' % bar_symbol)
         else: