Skip to content

Commit

Permalink
#327 deactivated emptying children comboboxes while editing an EM rec…
Browse files Browse the repository at this point in the history
…ords.
  • Loading branch information
ghuotvez committed Feb 27, 2024
1 parent 1cd3d92 commit 82404c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GSCFieldApp/Views/EarthmatDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,11 @@ private void EarthLithAutoSuggest_QuerySubmitted(AutoSuggestBox sender, AutoSugg
}

//Update list that are bound to lithology selection
ViewModel.InitFill2ndRound(EarthLitho.Text);
if (parentViewMode.GenericTableName != DatabaseLiterals.TableEarthMat && !ViewModel.doEarthUpdate)
{
ViewModel.InitFill2ndRound(EarthLitho.Text);
}


}

Expand Down

0 comments on commit 82404c0

Please sign in to comment.