Skip to content

Commit 6cce7bb

Browse files
committed
Ensure Cut only dims the DataGridRows selected
1 parent cedbcc3 commit 6cce7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Files UWP/Interacts/Interaction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -916,9 +916,9 @@ public async void CutItem_Click(object sender, RoutedEventArgs e)
916916
// First, reset DataGrid Rows that may be in "cut" command mode
917917
foreach (DataGridRow row in dataGridRows)
918918
{
919-
if (row.Opacity < 1)
919+
if ((CurrentInstance.accessibleContentFrame.Content as GenericFileBrowser).data.Columns[0].GetCellContent(row).Opacity < 1)
920920
{
921-
row.Opacity = 1;
921+
(CurrentInstance.accessibleContentFrame.Content as GenericFileBrowser).data.Columns[0].GetCellContent(row).Opacity = 1;
922922
}
923923
}
924924

0 commit comments

Comments
 (0)