Führende Leerzeichen werden entfernt
This commit is contained in:
@@ -20,10 +20,10 @@ namespace SanSystem
|
|||||||
string[] besatzung = Global.Instance.AktuelleBesatzung.Split('/');
|
string[] besatzung = Global.Instance.AktuelleBesatzung.Split('/');
|
||||||
if(besatzung.Length > 0)
|
if(besatzung.Length > 0)
|
||||||
{
|
{
|
||||||
txt_vorarbeiter.Text = besatzung[0];
|
txt_vorarbeiter.Text = besatzung[0].Trim();
|
||||||
if(besatzung.Length > 1)
|
if(besatzung.Length > 1)
|
||||||
{
|
{
|
||||||
txt_nacharbeiter.Text = besatzung[1];
|
txt_nacharbeiter.Text = besatzung[1].Trim();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user