diff -r f11b234497f7 -r 61c384dda19e src/widgets/Arrow.js --- a/src/widgets/Arrow.js Fri Apr 27 19:18:21 2012 +0200 +++ b/src/widgets/Arrow.js Thu May 03 17:52:52 2012 +0200 @@ -20,7 +20,10 @@ IriSP.Widgets.Arrow.prototype.draw = function() { this.height = this.arrow_height + this.base_height; - this.$.addClass("Ldt-Arrow").css("height", this.height + "px"); + this.$.addClass("Ldt-Arrow").css({ + height: this.height + "px", + "margin-top": "1px" + }); this.paper = new Raphael(this.container, this.width, this.height ); window.myArrow = this; this.svgArrow = this.paper.path('M0,' + this.height + 'L' + this.width + ',' + this.height);