Bug 747321 - Invite Attendees dialog: Free/busy display bug while scrolling with a 50% zoom. r=Mozilla

This commit is contained in:
Tatsuya 2014-02-20 00:58:16 +01:00
Родитель ef89fc942a
Коммит e0da435465
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -603,7 +603,7 @@
<property name="numHours">
<getter><![CDATA[
var numHours = this.mEndHour - this.mStartHour;
return Math.floor(numHours * 100 / this.mZoomFactor);
return Math.ceil(numHours * 100 / this.mZoomFactor);
]]></getter>
</property>