7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-05 00:15:30 +00:00

Use arrow not pencil when selecting image

The arrow cursor makes better syntactic sense for placing existing items
rather than drawing as is the case for other tools

Fixes https://gitlab.com/kicad/code/kicad/-/issues/17588
This commit is contained in:
Seth Hillbrand 2024-09-13 16:51:16 -07:00
parent 89b9b13e21
commit c736904e39
3 changed files with 13 additions and 3 deletions
eeschema/tools
pagelayout_editor/tools
pcbnew/tools

View File

@ -840,7 +840,7 @@ int SCH_DRAWING_TOOLS::PlaceImage( const TOOL_EVENT& aEvent )
if( image )
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::MOVING );
else
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
};
auto cleanup =

View File

@ -85,8 +85,18 @@ int PL_DRAWING_TOOLS::PlaceItem( const TOOL_EVENT& aEvent )
{
if( item )
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::PLACE );
else if( isText )
{
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::TEXT );
}
else if( aEvent.IsAction( &PL_ACTIONS::placeImage ) )
{
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
}
else
m_frame->GetCanvas()->SetCurrentCursor( isText ? KICURSOR::TEXT : KICURSOR::PENCIL );
{
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
}
};
auto cleanup =

View File

@ -578,7 +578,7 @@ int DRAWING_TOOL::PlaceReferenceImage( const TOOL_EVENT& aEvent )
if( image )
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::MOVING );
else
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
};
auto cleanup =