Fixing bug Terrain Editor bug #91

This commit is contained in:
NoboKani 2020-12-08 22:12:45 +03:00
parent 9be3151cb0
commit a56fe4037e

View file

@ -1897,6 +1897,9 @@ void TerrainEditor::on3DMouseDragged(const Gui3DMouseEvent & event)
selChanged = gMouse != gLastMouse; selChanged = gMouse != gLastMouse;
} }
if ( mMouseDown )
return;
mCurrentAction->process( mMouseBrush, event, true, TerrainAction::Update ); mCurrentAction->process( mMouseBrush, event, true, TerrainAction::Update );
} }