| Summary: | More options to select action in sequence diagram | ||
|---|---|---|---|
| Product: | [Applications] umbrello | Reporter: | Anton G. Alvedro <galvedro> |
| Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Anton G. Alvedro
2005-03-15 11:52:45 UTC
When I am referring to the properties dialog, I mean the Operations dialog. *** Bug 101717 has been marked as a duplicate of this bug. *** CVS commit by okellogg:
mouseRelease(): Showing the operation dialog speeds up message creation.
CCBUG:101541
M +5 -1 toolbarstatemessages.cpp 1.17
--- kdesdk/umbrello/umbrello/toolbarstatemessages.cpp #1.16:1.17
@@ -118,8 +118,12 @@ void ToolBarStateMessages::mouseRelease(
m_pUMLView->connect(m_pUMLView, SIGNAL(sigColorChanged(Uml::IDType)), message, SLOT(slotColorChanged(Uml::IDType)));
- message->setActivated();
+ message->activate();
m_pSelectedWidget = 0;
m_pUMLView->getMessageList().append(message);
+ FloatingText *ft = message->getFloatingText();
+ ft->showOpDlg();
+ message->setTextPosition();
+ m_pUMLView->getWidgetList().append(ft);
}
}
CVS commit by okellogg:
BUG:101541 - onWidget():
Fix to {top,bottom}ArrowY brings on the properties dialog upon double clicking.
M +4 -1 ChangeLog 1.75
M +3 -3 umbrello/messagewidget.cpp 1.71
--- kdesdk/umbrello/ChangeLog #1.74:1.75
@@ -2,8 +2,10 @@
* Externalization of folders (i.e. submodel files)
- http://bugs.kde.org/87252
+* Bugs fixed / wishes implemented (see http://bugs.kde.org)
+87252
Version 1.4.1 (maintenance release)
+
Bugs fixed:
* Crash on deleting attributes / enum literals
@@ -11,4 +13,5 @@
* Bugs from http://bugs.kde.org :
53376 57667 57875 95353 100290 100307 101148 103123 103133 103728
+101541
Version 1.4
--- kdesdk/umbrello/umbrello/messagewidget.cpp #1.70:1.71
@@ -266,8 +266,8 @@ bool MessageWidget::onWidget(const QPoin
if (p.x() < getX() || p.x() > getX() + getWidth())
return false;
- const int tolerance = 4; // pixels
+ const int tolerance = 5; // pixels
const int pY = p.y();
- const int topArrowY = getY();
- const int bottomArrowY = topArrowY + getHeight();
+ const int topArrowY = getY() + 3;
+ const int bottomArrowY = getY() + getHeight() - 3;
if (pY < topArrowY - tolerance || pY > bottomArrowY + tolerance)
return false;
|