Skip to content

Commit

Permalink
fix: 修复复制标题结果不正确的问题
Browse files Browse the repository at this point in the history
由上一次改动导致
  • Loading branch information
Light authored and Light committed Jul 8, 2022
1 parent 157577e commit 4b32bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WindowsFormsApplication2/History/HistoryDataGridHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void CopyTitle()
DataGridViewRow curRow = this.historyDataGridView.Rows[this.mouseLocation.RowIndex];
if (curRow != null)
{
ClipboardHandler.SetTextToClipboard(curRow.Cells[22].Value.ToString());
ClipboardHandler.SetTextToClipboard(curRow.Cells[curRow.Cells.Count - 1].Value.ToString());
}
}
}
Expand Down

0 comments on commit 4b32bae

Please sign in to comment.