Bug 343187 DnD month view: Drop shadow for events spanning multiple days is not correct, r=dmose

This commit is contained in:
jminta%gmail.com 2006-07-21 00:50:07 +00:00
Родитель a4f066ff7b
Коммит c2967a5839
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -446,9 +446,6 @@
shadowStart.day -= this.monthView.mShadowIndex;
shadowStart.normalize();
for (var i = 0; i < this.monthView.mShadowLength; i++) {
shadowStart.day += i;
shadowStart.normalize();
var dropbox = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "box");
dropbox.setAttribute("dropbox", "true");
dropbox.setAttribute("flex", "1");
@ -456,6 +453,9 @@
var box = this.monthView.findBoxForDate(shadowStart).box;
box.dayitems.insertBefore(dropbox, box.dayitems.firstChild);
this.monthView.mDropShadows.push(dropbox);
shadowStart.day += 1;
shadowStart.normalize();
}
]]></body>
</method>