Jeff Young 2 years ago
parent
commit
9602151d6c
  1. 2
      eeschema/tools/ee_selection_tool.cpp
  2. 2
      pcbnew/tools/pcb_selection_tool.cpp

2
eeschema/tools/ee_selection_tool.cpp

@ -2157,7 +2157,7 @@ int EE_SELECTION_TOOL::SelectRows( const TOOL_EVENT& aEvent )
for( auto& [ table, row ] : rows )
{
for( int col = 0; col < table->GetRowCount(); ++col )
for( int col = 0; col < table->GetColCount(); ++col )
{
SCH_TABLECELL* cell = table->GetCell( row, col );

2
pcbnew/tools/pcb_selection_tool.cpp

@ -3964,7 +3964,7 @@ int PCB_SELECTION_TOOL::SelectRows( const TOOL_EVENT& aEvent )
for( auto& [ table, row ] : rows )
{
for( int col = 0; col < table->GetRowCount(); ++col )
for( int col = 0; col < table->GetColCount(); ++col )
{
PCB_TABLECELL* cell = table->GetCell( row, col );

Loading…
Cancel
Save