mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Edge fix in overview range selection
This commit is contained in:
parent
b140fe6b4b
commit
f3421d875d
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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>&Start</string>
|
||||
</property>
|
||||
|
Loading…
Reference in New Issue
Block a user