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:
parent
89b9b13e21
commit
c736904e39
eeschema/tools
pagelayout_editor/tools
pcbnew/tools
@ -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 =
|
||||
|
@ -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 =
|
||||
|
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user