Disable click processing on launcher titles.

Fixes https://gitlab.com/kicad/code/kicad/issues/7946

Fixes https://gitlab.com/kicad/code/kicad/issues/7946
This commit is contained in:
Jeff Young 2021-03-22 17:19:44 +00:00
parent 29b215d7f5
commit 9f8127afcf
1 changed files with 4 additions and 1 deletions

View File

@ -77,7 +77,10 @@ void PANEL_KICAD_LAUNCHER::CreateLaunchers()
help->SetFont( helpFont );
btn->Bind( wxEVT_BUTTON, handler );
label->Bind( wxEVT_LEFT_UP, handler );
// The bug fix below makes this handler active for the entire window width. Without
// any visual feedback that's a bit odd. Disabling for now.
// label->Bind( wxEVT_LEFT_UP, handler );
int row = m_toolsSizer->GetRows();