Przeglądaj źródła

Fixed bug with Problem column not updating table correctly.

Kenric Nugteren 7 miesięcy temu
rodzic
commit
d47d770314

+ 1 - 1
inabox.wpf/DynamicGrid/Columns/DynamicProblemsColumn.cs

@@ -138,7 +138,7 @@ public class DynamicProblemsColumn<TEntity> : DynamicImageColumn
         {
             using (new WaitCursor())
                 Client.Save(entity, "Resolving Issues", (o, e) => { });
-            row.Table.LoadRow(entity);
+            row.Table.FillRow(row, entity);
             _parent.InvalidateRow(row);
         }
     }