Bug 118719 - cannot anchor notes to activity elements in Activity Diagram
Summary: cannot anchor notes to activity elements in Activity Diagram
Status: RESOLVED FIXED
Alias: None
Product: umbrello
Classification: Applications
Component: general (show other bugs)
Version: 1.5
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: Oliver Kellogg
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-20 15:30 UTC by Rich Ibbotson
Modified: 2005-12-21 21:21 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rich Ibbotson 2005-12-20 15:30:39 UTC
Version:           1.5 (using KDE KDE 3.5.0)
Installed from:    Fedora RPMs
OS:                Linux

Umbrello 1.5 (as delivered with KDE 3.5 in Fedora Core 4) does not allow the user to anchor a note to an activity.  The previous version of Umbrello allowed this (and the manual indicates that it should work).

To reproduce:
1) Create an activity diagram
2) Create a start point, one activity, and an end point.
3) Create a text note.
4) Select the "Anchor" button and click on the text note.

Expected behavior:
The text note should be selected, and show an anchor that can then be connected to the activity created above.

Observed behavior:
The text note is not selected (user is unable to connect an anchor to the note).
Comment 1 Oliver Kellogg 2005-12-21 21:21:02 UTC
SVN commit 490414 by okellogg:

Restore accidentally removed call to UMLWidget::mouseReleaseEvent().
BUG:118719


 M  +1 -1      ChangeLog  
 M  +1 -0      umbrello/notewidget.cpp  


--- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #490413:490414
@@ -1,7 +1,7 @@
 Version 1.5.1
 
 * Bugs fixed / wishes implemented (see http://bugs.kde.org)
-109963 117791 117875 117990 118570
+109963 117791 117875 117990 118570 118719
 
 Version 1.5
 
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/notewidget.cpp #490413:490414
@@ -205,6 +205,7 @@
 }
 
 void NoteWidget::mouseReleaseEvent( QMouseEvent * me ) {
+    UMLWidget::mouseReleaseEvent( me );
     if (m_bResizing) {
         drawText();
         UMLWidget::mouseReleaseEvent(me);