Edge fix in overview range selection

This commit is contained in:
Mark Watkins 2011-12-25 23:43:11 +10:00
parent b140fe6b4b
commit f3421d875d
2 changed files with 9 additions and 7 deletions

View File

@ -292,14 +292,10 @@ void Overview::ResetGraphs()
{
QDate start=ui->dateStart->date();
QDate end=ui->dateEnd->date();
//ui->dateStart->setDate(p_profile->FirstDay());
//ui->dateEnd->setDate(p_profile->LastDay());
GraphView->setDay(NULL);
if (start.isValid() && end.isValid()) {
setRange(start,end);
}
//on_rangeCombo_activated(ui->rangeCombo->currentIndex());
}
void Overview::RedrawGraphs()
@ -376,8 +372,8 @@ void Overview::on_dateStart_dateChanged(const QDate &date)
void Overview::on_toolButton_clicked()
{
qint64 d1=qint64(QDateTime(ui->dateStart->date(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
qint64 d2=qint64(QDateTime(ui->dateEnd->date(),QTime(23,59,59),Qt::UTC).toTime_t())*1000L;
qint64 d1=qint64(QDateTime(ui->dateStart->date(),QTime(0,10,0),Qt::UTC).toTime_t())*1000L;
qint64 d2=qint64(QDateTime(ui->dateEnd->date(),QTime(23,0,0),Qt::UTC).toTime_t())*1000L;
GraphView->SetXBounds(d1,d2);
}

View File

@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>961</width>
<width>970</width>
<height>439</height>
</rect>
</property>
@ -87,6 +87,12 @@
</item>
<item>
<widget class="QPushButton" name="RunButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&amp;Start</string>
</property>