We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a28d41 commit 911eb85Copy full SHA for 911eb85
1 file changed
src/LogExpert/Controls/LogWindow/LogWindowsPublic.cs
@@ -873,7 +873,7 @@ public void ToggleBookmark()
873
if (filterGridView.Focused)
874
{
875
gridView = filterGridView;
876
- if (gridView.CurrentCellAddress == null || gridView.CurrentCellAddress.Y == -1)
+ if (gridView.CurrentCellAddress == default || gridView.CurrentCellAddress.Y == -1)
877
878
return;
879
}
@@ -883,7 +883,7 @@ public void ToggleBookmark()
883
else
884
885
gridView = dataGridView;
886
887
888
889
0 commit comments