develop #10

Merged
s426229 merged 80 commits from develop into master 2021-01-27 18:32:19 +01:00
Showing only changes of commit b3732fc11d - Show all commits

View File

@ -309,7 +309,7 @@ namespace Klient.Droid
List<string> history = JsonConvert.DeserializeObject<List<string>>(jsonObject.history);
int temp;
for(int i=0; i<10; i++)
for (int i = 0; i < 10; i++)
{
temp = i + 1;
FindViewById<TextView>(Resource.Id.history).Text = FindViewById<TextView>(Resource.Id.history).Text + "\n" + temp + ". " + history[i];
@ -320,4 +320,5 @@ namespace Klient.Droid
FindViewById<TextView>(Resource.Id.history).Text = "Coś poszło nie tak!";
}
}
}
}