7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Fix PCB_FILE_T usage in FP_LIB_TABLE_GRID.

This commit is contained in:
Alex Shvartzkop 2024-01-16 19:35:10 +03:00
parent 4f6c25895e
commit c8a0a58683

View File

@ -200,7 +200,7 @@ public:
PCB_IO_MGR::PCB_FILE_T pluginType = PCB_IO_MGR::GuessPluginTypeFromLibPath( fullURI );
if( pluginType == PCB_IO_MGR::UNKNOWN )
if( pluginType == PCB_IO_MGR::FILE_TYPE_NONE )
pluginType = PCB_IO_MGR::KICAD_SEXP;
SetValue( aRow, COL_TYPE, PCB_IO_MGR::ShowType( pluginType ) );