소스 검색

Fixed bug with Problem column not updating table correctly.

Kenric Nugteren 7 달 전
부모
커밋
d47d770314
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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())
             using (new WaitCursor())
                 Client.Save(entity, "Resolving Issues", (o, e) => { });
                 Client.Save(entity, "Resolving Issues", (o, e) => { });
-            row.Table.LoadRow(entity);
+            row.Table.FillRow(row, entity);
             _parent.InvalidateRow(row);
             _parent.InvalidateRow(row);
         }
         }
     }
     }