Give <esc>-with-no-selection-clears-net-highlight a test.
Fixes https://gitlab.com/kicad/code/kicad/issues/8760
This commit is contained in:
parent
b8479bf6f1
commit
00fc225306
|
@ -56,6 +56,7 @@
|
||||||
#include <tools/ee_grid_helper.h>
|
#include <tools/ee_grid_helper.h>
|
||||||
#include <tools/ee_point_editor.h>
|
#include <tools/ee_point_editor.h>
|
||||||
#include <tools/sch_line_wire_bus_tool.h>
|
#include <tools/sch_line_wire_bus_tool.h>
|
||||||
|
#include <tools/sch_editor_control.h>
|
||||||
#include <trigo.h>
|
#include <trigo.h>
|
||||||
#include <view/view.h>
|
#include <view/view.h>
|
||||||
#include <view/view_controls.h>
|
#include <view/view_controls.h>
|
||||||
|
@ -571,8 +572,18 @@ int EE_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent )
|
||||||
if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( m_frame ) )
|
if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( m_frame ) )
|
||||||
schframe->FocusOnItem( nullptr );
|
schframe->FocusOnItem( nullptr );
|
||||||
|
|
||||||
|
if( !GetSelection().Empty() )
|
||||||
|
{
|
||||||
ClearSelection();
|
ClearSelection();
|
||||||
}
|
}
|
||||||
|
else if( evt->FirstResponder() == this )
|
||||||
|
{
|
||||||
|
SCH_EDITOR_CONTROL* editor = m_toolMgr->GetTool<SCH_EDITOR_CONTROL>();
|
||||||
|
|
||||||
|
if( editor )
|
||||||
|
editor->ClearHighlight( *evt );
|
||||||
|
}
|
||||||
|
}
|
||||||
else if( evt->Action() == TA_UNDO_REDO_PRE )
|
else if( evt->Action() == TA_UNDO_REDO_PRE )
|
||||||
{
|
{
|
||||||
if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( m_frame ) )
|
if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( m_frame ) )
|
||||||
|
@ -580,7 +591,7 @@ int EE_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent )
|
||||||
|
|
||||||
ClearSelection();
|
ClearSelection();
|
||||||
}
|
}
|
||||||
else if( evt->IsMotion() && !m_isSymbolEditor && m_frame->ToolStackIsEmpty() )
|
else if( evt->IsMotion() && !m_isSymbolEditor && evt->FirstResponder() == this )
|
||||||
{
|
{
|
||||||
// Update cursor and rollover item
|
// Update cursor and rollover item
|
||||||
rolloverItem = niluuid;
|
rolloverItem = niluuid;
|
||||||
|
|
Loading…
Reference in New Issue