Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Zytek committed Dec 17, 2014
1 parent 517dc58 commit a002d3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
IndependentValuePath="Name"
DependentValuePath="Value"
IsSelectionEnabled="false"/>
<charting:LineSeries Title="Gen Pool 2"
<charting:LineSeries Title="GenPool 2"
ItemsSource="{Binding MultiplePoolFitnessTrends[1]}"
Margin="0"
IndependentValuePath="Name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,13 +331,15 @@ private async void DeleteNetwork()
UICommand ok = new UICommand("OK");
ok.Invoked = async delegate(IUICommand command)
{
this.IsLoading = true;
int delnetworkid = this.SelectedNetwork.NetworkId;
this.SelectedNetwork.Calculated = false;
this.SelectedNetwork.Status = NetworkStatusType.NotStarted;
this.CreateNetworkGroups();
NumberRecognizerServiceClient serviceClient = new NumberRecognizerServiceClient();
await serviceClient.DeleteNetworkAsync(delnetworkid);
this.SelectedNetwork = null;
this.IsLoading = false;

////refresh data
await this.LoadNetworksAsync();
Expand Down

0 comments on commit a002d3a

Please sign in to comment.