7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-18 16:29:18 +00:00

Hide notification panel on focus loss.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/17295
This commit is contained in:
Alex Shvartzkop 2024-07-22 13:33:08 +03:00
parent 07e8edfcdf
commit 7e115249af

View File

@ -178,6 +178,7 @@ public:
m_contentSizer->Add( m_noNotificationsText, 1, wxALL | wxEXPAND, 5 );
Bind( wxEVT_KILL_FOCUS, &NOTIFICATIONS_LIST::onFocusLoss, this );
m_scrolledWindow->Bind( wxEVT_KILL_FOCUS, &NOTIFICATIONS_LIST::onFocusLoss, this );
SetSizer( bSizer1 );
Layout();