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:
parent
29b215d7f5
commit
9f8127afcf
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue