Merge "Resizeable node updates context after mouse up"

This commit is contained in:
jenkins-bot 2013-10-11 09:11:16 +00:00 committed by Gerrit Code Review
commit 06ee5b8e96

View file

@ -290,9 +290,9 @@ ve.ce.ResizableNode.prototype.onDocumentMouseUp = function () {
); );
} }
// Show the context menu. This usually happens with the redraw, but not if the // Update the context menu. This usually happens with the redraw, but not if the
// user doesn't perform a drag // user doesn't perform a drag
this.root.getSurface().getSurface().getContext().show(); this.root.getSurface().getSurface().getContext().update();
this.emit( 'resize' ); this.emit( 'resize' );
}; };