~ubuntu-branches/ubuntu/utopic/inkscape/utopic-proposed

« back to all changes in this revision

Viewing changes to src/ui/tool/control-point-selection.cpp

Tags: upstream-0.48.0
ImportĀ upstreamĀ versionĀ 0.48.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
290
290
{
291
291
    Geom::Point abs_delta = new_pos - _original_positions[_grabbed_point];
292
292
    double fdist = Geom::distance(_original_positions[_grabbed_point], _original_positions[_farthest_point]);
293
 
    if (held_only_alt(*event) && fdist > 0) {
 
293
    if (held_alt(*event) && fdist > 0) {
294
294
        // Sculpting
295
295
        for (iterator i = _points.begin(); i != _points.end(); ++i) {
296
296
            SelectableControlPoint *cur = (*i);