Browse Source

Fixed bug with Problem column not updating table correctly.

Kenric Nugteren 9 tháng trước cách đây
mục cha
commit
d47d770314
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      inabox.wpf/DynamicGrid/Columns/DynamicProblemsColumn.cs

+ 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);
         }
     }