fix double-click-shows-region-properties in Ripple mode

This commit is contained in:
Ben Loftis 2014-09-15 11:43:12 -05:00
parent 076bb0b488
commit 0676cfc070

View File

@ -1791,6 +1791,15 @@ void
RegionRippleDrag::finished (GdkEvent* event, bool movement_occurred)
{
if (!movement_occurred) {
/* just a click */
if (was_double_click() && !_views.empty()) {
DraggingView dv = _views.front();
dv.view->show_region_editor ();
}
return;
}