holding both Ctrl and Shift still enables 10x stength

This commit is contained in:
jacob1
2012-10-04 10:59:49 -04:00
committed by Simon Robertshaw
parent a9619fad33
commit 433a80b099

View File

@@ -1629,10 +1629,7 @@ void GameView::enableShiftBehaviour()
shiftBehaviour = true; shiftBehaviour = true;
if(isMouseDown) if(isMouseDown)
{ {
if(!ctrlBehaviour) c->SetToolStrength(10.0f);
c->SetToolStrength(10.0f);
else
c->SetToolStrength(1.0f);
} }
} }
} }
@@ -1681,7 +1678,7 @@ void GameView::enableCtrlBehaviour()
if(!shiftBehaviour) if(!shiftBehaviour)
c->SetToolStrength(.1f); c->SetToolStrength(.1f);
else else
c->SetToolStrength(1.0f); c->SetToolStrength(10.0f);
} }
} }
} }