Commit 106fa9bb authored by Maciej Suminski's avatar Maciej Suminski

Edit tool may still be activated if it was invoked with no selected items.

parent 347649e8
...@@ -80,7 +80,11 @@ int EDIT_TOOL::Main( TOOL_EVENT& aEvent ) ...@@ -80,7 +80,11 @@ int EDIT_TOOL::Main( TOOL_EVENT& aEvent )
m_updateFlag = KIGFX::VIEW_ITEM::GEOMETRY; m_updateFlag = KIGFX::VIEW_ITEM::GEOMETRY;
if( selection.Empty() ) if( selection.Empty() )
return 0; // there are no items to operate on {
setTransitions(); // this is necessary, so later the tool may
// be activated upon reception of the activation event
return 0; // there are no items to operate on, so we can end now
}
VECTOR2D dragPosition; // The last position of the cursor while dragging VECTOR2D dragPosition; // The last position of the cursor while dragging
m_dragging = false; m_dragging = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment