Commit 49dd416c authored by Maciej Suminski's avatar Maciej Suminski

Dragged items offset is cleared when dragging is finished.

parent f32419f7
...@@ -65,6 +65,9 @@ bool EDIT_TOOL::Init() ...@@ -65,6 +65,9 @@ bool EDIT_TOOL::Init()
m_selectionTool->AddMenuItem( COMMON_ACTIONS::remove, SELECTION_CONDITIONS::NotEmpty ); m_selectionTool->AddMenuItem( COMMON_ACTIONS::remove, SELECTION_CONDITIONS::NotEmpty );
m_selectionTool->AddMenuItem( COMMON_ACTIONS::properties, SELECTION_CONDITIONS::NotEmpty ); m_selectionTool->AddMenuItem( COMMON_ACTIONS::properties, SELECTION_CONDITIONS::NotEmpty );
m_offset.x = 0;
m_offset.y = 0;
setTransitions(); setTransitions();
return true; return true;
...@@ -186,6 +189,8 @@ int EDIT_TOOL::Main( TOOL_EVENT& aEvent ) ...@@ -186,6 +189,8 @@ int EDIT_TOOL::Main( TOOL_EVENT& aEvent )
} }
m_dragging = false; m_dragging = false;
m_offset.x = 0;
m_offset.y = 0;
if( restore ) if( restore )
{ {
......
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