B2018-109 Fixed Tool Tip error on procedure that began with a space, in the Consistency Check dialog
This commit is contained in:
parent
5bf50a92df
commit
8f180f14d2
@ -539,7 +539,7 @@ namespace VEPROMS
|
|||||||
{
|
{
|
||||||
int d = s.IndexOf(" - ");
|
int d = s.IndexOf(" - ");
|
||||||
if (d > -1)
|
if (d > -1)
|
||||||
s = s.Substring(0, d).Trim();
|
s = s.Substring(0, d); //B2018-109 remvoed the call ".Trim()". had a procedure that began with a space and was being used as such everywhere else in the approveal logic
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
private void btnCheckMore_Click(object sender, EventArgs e)
|
private void btnCheckMore_Click(object sender, EventArgs e)
|
||||||
|
@ -138,4 +138,7 @@
|
|||||||
<metadata name="sttMore.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="sttMore.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>216, 17</value>
|
<value>216, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>50</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
Loading…
x
Reference in New Issue
Block a user