Remember last tab for Pad Properties.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15925
This commit is contained in:
Jeff Young 2023-10-23 14:13:15 +01:00
parent 96d203477e
commit bf4529c1b5
2 changed files with 17 additions and 0 deletions

View File

@ -52,6 +52,9 @@
#include <wx/choicdlg.h>
int DIALOG_PAD_PROPERTIES::m_page = 0; // remember the last open page during session
// list of pad shapes, ordered like the pad shape wxChoice in dialog.
static PAD_SHAPE code_shape[] =
{
@ -270,6 +273,15 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, PAD* aPad
// Initialize canvas to be able to display the dummy pad:
prepareCanvas();
m_notebook->SetSelection( m_page );
switch( m_page )
{
case 0: SetInitialFocus( m_padNumCtrl ); break;
case 1: SetInitialFocus( m_thermalGapCtrl ); break;
case 2: SetInitialFocus( m_clearanceCtrl ); break;
}
SetInitialFocus( m_padNumCtrl );
SetupStandardButtons();
m_canUpdate = true;
@ -303,6 +315,8 @@ DIALOG_PAD_PROPERTIES::~DIALOG_PAD_PROPERTIES()
wxCommandEventHandler( DIALOG_PAD_PROPERTIES::OnValuesChanged ),
nullptr, this );
m_page = m_notebook->GetSelection();
delete m_previewPad;
delete m_axisOrigin;
}

View File

@ -138,7 +138,10 @@ private:
std::vector<PCB_SHAPE*> m_highlight; // shapes highlighted in GAL mode
PCB_DRAW_PANEL_GAL* m_padPreviewGAL;
KIGFX::ORIGIN_VIEWITEM* m_axisOrigin; // origin of the preview canvas
static bool m_sketchPreview; // session storage
static int m_page; // remember the last open page during session
UNIT_BINDER m_posX, m_posY;
UNIT_BINDER m_sizeX, m_sizeY;