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.47 -r1.48 --- lams_central/web/includes/javascript/authoring/authoringActivity.js 17 Jun 2015 07:58:33 -0000 1.47 +++ lams_central/web/includes/javascript/authoring/authoringActivity.js 17 Jun 2015 08:12:14 -0000 1.48 @@ -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 +};