B2019-055 (re-fix of B2019039) Removed previous format change which caused issues entering hold points after a note
B2019-055 (re-fix of B2019039) added logic to check if previous note or caution have the same Type number in determining if the change bar should be extended from the previous change bar.
This commit is contained in:
parent
169f6a276d
commit
fd21ef8e66
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -130,7 +130,8 @@ namespace Volian.Print.Library
|
||||
{
|
||||
// the separator must exist and the previous must have a change bar.
|
||||
|
||||
if ((sep != "") && (tmp.Text == sep) && parent.MyItemInfo.MyPrevious != null && parent.MyItemInfo.MyPrevious.HasChangeBar)
|
||||
// B2019-055 added check if the previous caution or note have the same type number
|
||||
if ((sep != "") && (tmp.Text == sep) && parent.MyItemInfo.MyPrevious != null && parent.MyItemInfo.MyPrevious.HasChangeBar && (parent.MyItemInfo.MyContent.Type == parent.MyItemInfo.MyPrevious.MyContent.Type))
|
||||
{
|
||||
if (MyPageHelper.MyParagraphs.ContainsKey(parent.MyItemInfo.MyPrevious.ItemID))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user