mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 18:23:15 +02:00
10 lines
294 B
C++
10 lines
294 B
C++
#include <dialog_lib_new_component.h>
|
|
|
|
DIALOG_LIB_NEW_COMPONENT::DIALOG_LIB_NEW_COMPONENT( wxWindow* parent ) :
|
|
DIALOG_LIB_NEW_COMPONENT_BASE( parent )
|
|
{
|
|
/* Required to make escape key work correctly in wxGTK. */
|
|
m_sdbSizerOK->SetFocus();
|
|
m_sdbSizerOK->SetDefault();
|
|
}
|