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

« back to all changes in this revision

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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
            _setState(STATE_CLICKED);
330
330
            return true;
331
331
        }
332
 
        return _event_grab;
 
332
        return false;
333
333
 
334
334
    case GDK_2BUTTON_PRESS:
335
335
        // store the button number for next release
452
452
 
453
453
    default: break;
454
454
    }
455
 
 
456
 
    // do not propagate events during grab - it might cause problems
457
 
    return _event_grab;
 
455
    
 
456
    return false;
458
457
}
459
458
 
460
459
void ControlPoint::_setMouseover(ControlPoint *p, unsigned state)