Browse Source

Fixed error in setting Windows extension on executable file

pull/3/merge
Cirilo Bernardo 9 years ago
committed by Wayne Stambaugh
parent
commit
ba65c39b40
  1. 2
      pcbnew/pcbframe.cpp

2
pcbnew/pcbframe.cpp

@ -480,7 +480,7 @@ PCB_EDIT_FRAME::PCB_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
wxFileName appK2S( strK2S, "kicad2step" );
#ifdef _WIN32
appK2S.SetExt( ".exe" );
appK2S.SetExt( "exe" );
#endif
if( !appK2S.FileExists() )

Loading…
Cancel
Save