Compare commits
8 Commits
B2019-140_
...
C2025-060
| Author | SHA1 | Date | |
|---|---|---|---|
| caeead0bc0 | |||
| f93204e37e | |||
| e6af91c6ab | |||
| c89428eed8 | |||
| b4f2b89139 | |||
| aab7cdcf77 | |||
| 47cdedefd4 | |||
| 710145a32d |
Binary file not shown.
@@ -5380,6 +5380,8 @@ namespace VEPROMS
|
|||||||
private void btnUpdateFormat_Click(object sender, EventArgs e)
|
private void btnUpdateFormat_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
UpdateFormats(null);
|
UpdateFormats(null);
|
||||||
|
//C2025-060 When format is updated in PROMS, auto-update the format cache so it doesn't require exiting PROMS and going back in.
|
||||||
|
RefreshFormats(sender, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateFormats(string mypath)
|
private void UpdateFormats(string mypath)
|
||||||
|
|||||||
@@ -1667,7 +1667,7 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Clipboard.Clear();
|
Clipboard.Clear();
|
||||||
Clipboard.SetDataObject(myDO); // this saves the cleaned up information to the Windows clipboard
|
Clipboard.SetDataObject(myDO, true); // this saves the cleaned up information to the Windows clipboard
|
||||||
}
|
}
|
||||||
iData = Clipboard.GetDataObject();
|
iData = Clipboard.GetDataObject();
|
||||||
bool noEquationData = true;
|
bool noEquationData = true;
|
||||||
|
|||||||
@@ -6456,8 +6456,11 @@ namespace Volian.Print.Library
|
|||||||
{
|
{
|
||||||
if (itemInfo.MyDocStyle.AlignHLSTabWithSect || itemInfo.FormatStepData.AlignHLSTabWithSectOvride)
|
if (itemInfo.MyDocStyle.AlignHLSTabWithSect || itemInfo.FormatStepData.AlignHLSTabWithSectOvride)
|
||||||
{
|
{
|
||||||
|
float orgXOffset = MyTab.XOffset;
|
||||||
myTab.XOffset = (float)itemInfo.MyDocStyle.Layout.LeftMargin + (float)formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Pos;
|
myTab.XOffset = (float)itemInfo.MyDocStyle.Layout.LeftMargin + (float)formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Pos;
|
||||||
XOffset = myTab.XOffset + myTab.Width;
|
XOffset = myTab.XOffset + myTab.Width;
|
||||||
|
// F2025-040 Adjust the Cont Act box position around HLS number
|
||||||
|
if (myTab.MyMacro != null) myTab.MyMacro.XOffset += (MyTab.XOffset - orgXOffset);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user