We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5cd294 commit 0457078Copy full SHA for 0457078
1 file changed
EDSEditorGUI/DevicePDOView2.cs
@@ -531,7 +531,7 @@ public void UpdatePDOinfo(bool updatechoices = true)
531
grid1[row + 2, bitoff + INFO_COLS_COUNT] = new SourceGrid.Cells.Cell("Empty", comboStandard);
532
// Align "Empty" cell to byte end
533
int colspan = (64 - bitoff) % 8;
534
- if ((colspan == 0) && ((64 - bitoff) > 8))
+ if ((colspan == 0) && ((64 - bitoff) >= 8))
535
colspan = 8;
536
grid1[row + 2, bitoff + INFO_COLS_COUNT].ColumnSpan = colspan;
537
grid1[row + 2, bitoff + INFO_COLS_COUNT].View = viewEmpty;
0 commit comments