Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeezyT <timo@ezdesign.de>2012-10-08 12:49:38 +0400
committerBeezyT <timo@ezdesign.de>2012-10-08 12:49:38 +0400
commitc797f1e1fe1f5b2f73c72ab730457e375e64a903 (patch)
treec6472a913f6930cc016e8bded1b2a8d0a824507b /plugins/Transitions
parentce99ae9c5a2a591013b6d8756e067a11518df05b (diff)
refs #3332: edges on the sides are a bit straighter
git-svn-id: http://dev.piwik.org/svn/trunk@7128 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Transitions')
-rw-r--r--plugins/Transitions/templates/transitions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Transitions/templates/transitions.js b/plugins/Transitions/templates/transitions.js
index 0f779a51d0..f28b16dbb3 100644
--- a/plugins/Transitions/templates/transitions.js
+++ b/plugins/Transitions/templates/transitions.js
@@ -952,7 +952,7 @@ Piwik_Transitions_Canvas.prototype.renderLeftBoxBg = function(context, boxHeight
context.bezierCurveTo(cp1Lower.x, cp1Lower.y, cp2Lower.x, cp2Lower.y, leftLower.x, leftLower.y);
// the box
- context.lineTo(leftLower.x - this.boxWidth + 4, leftLower.y);
+ context.lineTo(leftLower.x - this.boxWidth + 2, leftLower.y);
context.lineTo(leftLower.x - this.boxWidth, leftUpper.y);
context.lineTo(leftUpper.x, leftUpper.y);
context.fill();
@@ -978,7 +978,7 @@ Piwik_Transitions_Canvas.prototype.renderRightBoxBg = function(context, boxHeigh
// the box
context.lineTo(rightUpper.x + this.boxWidth, rightUpper.y);
- context.lineTo(rightLower.x + this.boxWidth - 4, rightLower.y);
+ context.lineTo(rightLower.x + this.boxWidth - 2, rightLower.y);
context.lineTo(rightLower.x, rightLower.y);
// the flow part 2