From 443912f8f89be75f60187fc385970f57d49a6715 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 11 Sep 2019 07:54:04 -0400 Subject: [PATCH] Handle sharp bends --- EtchBendLines/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EtchBendLines/Program.cs b/EtchBendLines/Program.cs index 163e603..31be9dd 100644 --- a/EtchBendLines/Program.cs +++ b/EtchBendLines/Program.cs @@ -142,7 +142,7 @@ namespace EtchBendLines if (bendNote == null) continue; - var note = bendNote.Value.ToUpper(); + var note = bendNote.Value.ToUpper().Replace("SHARP", "R0"); if (note.Contains("UP")) bendline.Direction = BendDirection.Up;