From 209a86dc71b83aabd8e380bfb62366ee9763a574 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Sat, 2 Aug 2014 16:08:15 +0200 Subject: [PATCH] fix(modeling): correct size for gateways --- lib/features/modeling/ElementFactory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/modeling/ElementFactory.js b/lib/features/modeling/ElementFactory.js index 56b88684..ee8abc1f 100644 --- a/lib/features/modeling/ElementFactory.js +++ b/lib/features/modeling/ElementFactory.js @@ -79,7 +79,7 @@ ElementFactory.prototype._getDefaultSize = function(semantic) { } if (semantic.$instanceOf('bpmn:Gateway')) { - return { width: 36, height: 36 }; + return { width: 50, height: 50 }; } if (semantic.$instanceOf('bpmn:Event')) {