Flip the y axis in the scale tool so that moving the mouse up increases size

Originally committed to SVN as r5843.
This commit is contained in:
Thomas Goyne 2011-11-12 01:22:45 +00:00
parent c4369a092f
commit d4ee9da474
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ bool VisualToolScale::InitializeHold() {
}
void VisualToolScale::UpdateHold() {
Vector2D delta = mouse_pos - drag_start;
Vector2D delta = (mouse_pos - drag_start) * Vector2D(1, -1);
if (shift_down)
delta = delta.SingleAxis();