Fixed Issue 337: MouseUp on Rect selects Square (Opera)

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@969 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2009-11-23 17:10:13 +00:00
parent 4bb363466f
commit 04ed475d6f
1 changed files with 2 additions and 2 deletions

View File

@ -1367,8 +1367,8 @@ function svg_edit_setup() {
$('#tool_ungroup').click(clickGroup);
$('[id^=tool_align]').click(clickAlign);
// these two lines are required to make Opera work properly with the flyout mechanism
$('#tools_rect_show').click(clickSquare);
$('#tools_ellipse_show').click(clickCircle);
$('#tools_rect_show').click(clickRect);
$('#tools_ellipse_show').click(clickEllipse);
$('#tool_bold').mousedown(clickBold);
$('#tool_italic').mousedown(clickItalic);