Browse Source

Fixed tuner autoplacement

pull/3/merge
Maciej Suminski 9 years ago
parent
commit
ba3ce9b566
  1. 11
      eeschema/sim/sim_plot_frame.cpp

11
eeschema/sim/sim_plot_frame.cpp

@ -247,16 +247,9 @@ void SIM_PLOT_FRAME::AddTuner( SCH_COMPONENT* aComponent )
try
{
TUNER_SLIDER* tuner = new TUNER_SLIDER( this, m_sidePanel, aComponent );
m_tuneSizer->Add( tuner , 0, wxALL, 5 );
m_tuneSizer->Add( tuner );
tunerList.push_back( tuner );
//m_sidePanel->Layout();
//m_sideSizer->Fit( m_sidePanel );
//m_splitterPlot->Layout();
Layout();
Layout();
Layout();
Layout();
Layout();
m_sidePanel->Layout();
}
catch( ... )
{

Loading…
Cancel
Save