Index: lams_central/web/includes/javascript/authoring/authoringActivity.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/authoring/authoringActivity.js,v diff -u -r1.38.2.9 -r1.38.2.10 --- lams_central/web/includes/javascript/authoring/authoringActivity.js 17 Jun 2015 08:00:58 -0000 1.38.2.9 +++ lams_central/web/includes/javascript/authoring/authoringActivity.js 17 Jun 2015 08:13:22 -0000 1.38.2.10 @@ -587,6 +587,12 @@ this.items = paper.setFinish(); this.items.toBack(); + + // region annotations could cover grouping effect + $.each(layout.regions, function(){ + this.items.shape.toBack(); + }); + this.items.data('parentObject', this); if (!isReadOnlyMode){ @@ -716,6 +722,11 @@ activity.items.push(activity.items.groupingEffect); + // region annotations could cover grouping effect + $.each(layout.regions, function(){ + this.items.shape.toBack(); + }); + // this is needed, for some reason, otherwise the activity can not be selected HandlerLib.resetCanvasMode(true); } @@ -1473,4 +1484,4 @@ branchingActivity.longestBranchLength = longestBranchLength; } -}; \ No newline at end of file +};