From f47a4ec92afa7aa50d9b32615a0d80086a093d84 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 8 Jul 2022 09:48:34 +0200 Subject: [PATCH] Eeschema: fix typo in commit 428bbc2 that make it not working. --- eeschema/dialogs/dialog_symbol_fields_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/dialogs/dialog_symbol_fields_table.cpp b/eeschema/dialogs/dialog_symbol_fields_table.cpp index d48c8bdada..a2bc0dec53 100644 --- a/eeschema/dialogs/dialog_symbol_fields_table.cpp +++ b/eeschema/dialogs/dialog_symbol_fields_table.cpp @@ -1357,7 +1357,7 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnExport( wxCommandEvent& aEvent ) return; // Find the location for the line terminator - for( int col = m_grid->GetNumberCols() - 1; col <=0 ; --col ) + for( int col = m_grid->GetNumberCols() - 1; col >=0 ; --col ) { if( m_grid->IsColShown( col ) ) {