Stop passing the focus to the layer widget on layer change

Most often it is not needed, but with the Object Inspector in place,
it keeps deactivating the properties panel.
This commit is contained in:
Maciej Suminski 2020-02-21 21:58:25 +01:00 committed by Jon Evans
parent d5677a6dfe
commit b7a734ad61
1 changed files with 0 additions and 10 deletions

View File

@ -671,9 +671,6 @@ void LAYER_WIDGET::ClearRenderRows()
void LAYER_WIDGET::SelectLayerRow( int aRow )
{
// enable the layer tab at index 0
m_notebook->SetSelection( 0 );
INDICATOR_ICON* oldIndicator = (INDICATOR_ICON*) getLayerComp( m_CurrentRow, 0 );
if( oldIndicator )
@ -684,13 +681,6 @@ void LAYER_WIDGET::SelectLayerRow( int aRow )
if( newIndicator )
{
newIndicator->SetIndicatorState( ROW_ICON_PROVIDER::STATE::ON );
// Make sure the desired layer row is visible.
// It seems that as of 2.8.2, setting the focus does this.
// I don't expect the scrolling to be needed at all because
// the minimum window size may end up being established so that the
// scroll bars will not be visible.
getLayerComp( aRow, 1 )->SetFocus();
}
m_CurrentRow = aRow;