Gerbview: Minot fix: allows 32 copper layers in Export to Pcbnew.
Fixes #9376 https://gitlab.com/kicad/code/kicad/issues/9376
This commit is contained in:
parent
1c5c052301
commit
7715d6d396
|
@ -1,5 +1,5 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version 3.9.0 Jun 18 2020)
|
||||
// C++ code generated with wxFormBuilder (version 3.10.0-39-g3487c3cb)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
|
@ -88,6 +88,17 @@ LAYERS_MAP_DIALOG_BASE::LAYERS_MAP_DIALOG_BASE( wxWindow* parent, wxWindowID id,
|
|||
m_comboCopperLayersCount->Append( _("12 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("14 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("16 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("18 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("20 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("22 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("24 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("26 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("28 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("30 Layers") );
|
||||
m_comboCopperLayersCount->Append( _("32 Layers") );
|
||||
m_comboCopperLayersCount->Append( wxEmptyString );
|
||||
m_comboCopperLayersCount->Append( wxEmptyString );
|
||||
m_comboCopperLayersCount->Append( wxEmptyString );
|
||||
bSizerLyrCnt->Add( m_comboCopperLayersCount, 0, wxEXPAND|wxBOTTOM|wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<wxFormBuilder_Project>
|
||||
<FileVersion major="1" minor="15" />
|
||||
<FileVersion major="1" minor="16" />
|
||||
<object class="Project" expanded="1">
|
||||
<property name="class_decoration"></property>
|
||||
<property name="code_generation">C++</property>
|
||||
|
@ -52,6 +52,7 @@
|
|||
<property name="subclass">DIALOG_SHIM; dialog_shim.h</property>
|
||||
<property name="title">Layer Selection</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="two_step_creation">0</property>
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
|
@ -353,7 +354,7 @@
|
|||
<property name="caption"></property>
|
||||
<property name="caption_visible">1</property>
|
||||
<property name="center_pane">0</property>
|
||||
<property name="choices">"2 Layers" "4 Layers" "6 Layers" "8 Layers" "10 Layers" "12 Layers" "14 Layers" "16 Layers"</property>
|
||||
<property name="choices">"2 Layers" "4 Layers" "6 Layers" "8 Layers" "10 Layers" "12 Layers" "14 Layers" "16 Layers" "18 Layers" "20 Layers" "22 Layers" "24 Layers" "26 Layers" "28 Layers" "30 Layers" "32 Layers" "" "" ""</property>
|
||||
<property name="close_button">1</property>
|
||||
<property name="context_help"></property>
|
||||
<property name="context_menu">1</property>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version 3.9.0 Jun 18 2020)
|
||||
// C++ code generated with wxFormBuilder (version 3.10.0-39-g3487c3cb)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
|
@ -67,7 +67,7 @@ class LAYERS_MAP_DIALOG_BASE : public DIALOG_SHIM
|
|||
wxButton* m_sdbSizerButtonsOK;
|
||||
wxButton* m_sdbSizerButtonsCancel;
|
||||
|
||||
// Virtual event handlers, overide them in your derived class
|
||||
// Virtual event handlers, override them in your derived class
|
||||
virtual void OnBrdLayersCountSelection( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnStoreSetup( wxCommandEvent& event ) { event.Skip(); }
|
||||
virtual void OnGetSetup( wxCommandEvent& event ) { event.Skip(); }
|
||||
|
@ -77,6 +77,7 @@ class LAYERS_MAP_DIALOG_BASE : public DIALOG_SHIM
|
|||
public:
|
||||
|
||||
LAYERS_MAP_DIALOG_BASE( wxWindow* parent, wxWindowID id = ID_LAYERS_MAP_DIALOG_BASE, const wxString& title = _("Layer Selection"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
||||
|
||||
~LAYERS_MAP_DIALOG_BASE();
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue