B2018-109 Fixed Tool Tip error on procedure that began with a space, in the Consistency Check dialog
This commit is contained in:
		| @@ -539,7 +539,7 @@ namespace VEPROMS | ||||
| 		{ | ||||
| 			int d = s.IndexOf(" - "); | ||||
| 			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; | ||||
| 		} | ||||
| 		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"> | ||||
|     <value>216, 17</value> | ||||
|   </metadata> | ||||
|   <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||||
|     <value>50</value> | ||||
|   </metadata> | ||||
| </root> | ||||
		Reference in New Issue
	
	Block a user