Skip to content

Commit

Permalink
fix header double click problem
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzad committed Oct 15, 2015
1 parent 4971d18 commit ebf482f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Binary file modified src/.vs/WHOis/v14/.suo
Binary file not shown.
3 changes: 3 additions & 0 deletions src/WHOis/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,11 @@ private async void dgvResult_CellDoubleClick(object sender, DataGridViewCellEven
{
try
{
if (e.RowIndex < 0) return;

InvokeIfRequire(() => Cursor = Cursors.WaitCursor);
DataGridViewCell cell = dgvResult.Rows[e.RowIndex].Cells[e.ColumnIndex];


if (!string.IsNullOrEmpty(cell.ErrorText))
{
Expand Down

0 comments on commit ebf482f

Please sign in to comment.