fix(modeling): correct size for gateways

This commit is contained in:
Nico Rehwaldt 2014-08-02 16:08:15 +02:00
parent 9a19927a97
commit 209a86dc71
1 changed files with 1 additions and 1 deletions

View File

@ -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')) {