blob: 5ce4c8e1672a617a6ee48d8681730596839e414e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: umbrello/umbrello/umlwidget.cpp
===================================================================
--- umbrello/umbrello/umlwidget.cpp (revision 516637)
+++ umbrello/umbrello/umlwidget.cpp (revision 516638)
@@ -1063,7 +1063,7 @@
const QSize minSize = calculateSize();
const int w = minSize.width();
const int h = minSize.height();
- if (getWidth() >= w && getHeight() >= h)
+ if (m_Type != Uml::wt_ForkJoin && getWidth() >= w && getHeight() >= h)
return;
setSize(w, h);
adjustAssocs( getX(), getY() ); // adjust assoc lines
|