[Uml-devel] KDE_3_4_BRANCH: kdesdk/umbrello
Oliver Kellogg
okellogg at users.sourceforge.net
Sat Apr 16 08:22:47 UTC 2005
CVS commit by okellogg:
Backport fix for bug 101541 from HEAD
> onWidget():
> Fix to {top,bottom}ArrowY brings on the properties dialog upon double clicking
M +10 -1 ChangeLog 1.68.2.1
M +3 -3 umbrello/messagewidget.cpp 1.61.2.5
--- kdesdk/umbrello/ChangeLog #1.68:1.68.2.1
@@ -1,2 +1,11 @@
+Version 1.4.1 (maintenance release)
+
+Bugs fixed:
+* Crash on deleting attributes / enum literals
+* Crash in UMLView::createAutoAttributeAssociations()
+* Bugs from http://bugs.kde.org :
+53376 57667 57875 95353 100290 100307 101148 103123 103133 103728
+101541
+
Version 1.4
@@ -29,5 +38,5 @@
94728 94795 94883 95082 95247 95252 95722 95924 95951 95954
96216 96221 96964 97155 97182 97697 97887 97984 98603 98899
-99697
+ 99697 100142
Version 1.3
--- kdesdk/umbrello/umbrello/messagewidget.cpp #1.61.2.4:1.61.2.5
@@ -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;
More information about the umbrello-devel
mailing list