Skip to content

Commit

Permalink
Merge branch 'Releases/Official-Release' into Feature/VariableSummary
Browse files Browse the repository at this point in the history
  • Loading branch information
Maheshkale447 authored Sep 22, 2024
2 parents e9b59fa + 53a67c2 commit c39fe12
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Ginger/Ginger/UserControlsLib/ucGridView/ucGrid.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,14 @@ public RadioButton AddRadioButton(string content, string groupName, RoutedEventH
#region ##### Internal Methods
private void ObjListPropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs e)
{
GingerCore.General.DoEvents();
try
{
GingerCore.General.DoEvents();
}
catch(Exception ex)
{
Reporter.ToLog(eLogLevel.DEBUG, "Error on object list change", ex);
}
if (e.PropertyName == "CurrentItem")
{
this.Dispatcher.Invoke(() =>
Expand Down

0 comments on commit c39fe12

Please sign in to comment.