Compare commits
7 Commits
F2025-002_
...
626960da9f
Author | SHA1 | Date | |
---|---|---|---|
626960da9f | |||
535728b982 | |||
ace9672a2e | |||
05a13861ac | |||
24374b85c1 | |||
8c358f1e3c | |||
289285f517 |
@@ -1584,7 +1584,7 @@ namespace ROEditor
|
|||||||
if (i + 1 < InUseList.Count) inuserecs = inuserecs + " ";
|
if (i + 1 < InUseList.Count) inuserecs = inuserecs + " ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (inuserecs != origFieldsInUse)
|
if ((inuserecs ?? "") != (origFieldsInUse ?? ""))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|
||||||
@@ -1599,7 +1599,7 @@ namespace ROEditor
|
|||||||
if (i + 1 < InUseApplcList.Count) applicfieldrecs = applicfieldrecs + " ";
|
if (i + 1 < InUseApplcList.Count) applicfieldrecs = applicfieldrecs + " ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (applicfieldrecs != origApplicFields)
|
if ((applicfieldrecs ?? "") != (origApplicFields ?? ""))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
//nothing has changed
|
//nothing has changed
|
||||||
|
BIN
PROMS/Volian.Controls.Library/DisplayHistory.designer.cs
generated
BIN
PROMS/Volian.Controls.Library/DisplayHistory.designer.cs
generated
Binary file not shown.
@@ -647,8 +647,10 @@ namespace Volian.Print.Library
|
|||||||
}
|
}
|
||||||
if (MyItemInfo.IsHigh)
|
if (MyItemInfo.IsHigh)
|
||||||
{
|
{
|
||||||
|
// C2025-014 change the zoom setting on the bookmark of a step from FITBH to FITV so that instead of zooming in
|
||||||
|
// on the step it will zoom to the page level ( like it does when you select a bookmark on a section.
|
||||||
MyPageHelper.PageBookmarks.Add(MyItemInfo, (MyItemInfo.MyTab == null) ? "" : MyItemInfo.MyTab.CleanText + " " + MyItemInfo.DisplayText,
|
MyPageHelper.PageBookmarks.Add(MyItemInfo, (MyItemInfo.MyTab == null) ? "" : MyItemInfo.MyTab.CleanText + " " + MyItemInfo.DisplayText,
|
||||||
new PdfDestination(PdfDestination.FITBH, yLocation + YVeryTop - YTopMost + SixLinesPerInch));
|
new PdfDestination(PdfDestination.FITV, yLocation + YVeryTop - YTopMost + SixLinesPerInch));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.WolfcreekCKLFormat)
|
if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.WolfcreekCKLFormat)
|
||||||
|
Reference in New Issue
Block a user