feat(modeling): increase default group size

This commit is contained in:
Nico Rehwaldt 2019-06-13 14:08:06 +02:00 committed by merge-me[bot]
parent 5cdc8b2953
commit c80f29c57f
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ ElementFactory.prototype._getDefaultSize = function(semantic) {
}
if (is(semantic, 'bpmn:Group')) {
return { width: 150, height: 120 };
return { width: 300, height: 300 };
}
return { width: 100, height: 80 };