mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
On Overview page do not save CUSTOM range selection on exit. (CUSTOM was restoring to a broken state. Now, it is just not saved and default LAST 3 MONTHS applies on restart.
This commit is contained in:
parent
61270ae83e
commit
4fe0869816
@ -149,6 +149,11 @@ Overview::~Overview()
|
|||||||
disconnect(ui->dateEnd->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateEnd_currentPageChanged(int, int)));
|
disconnect(ui->dateEnd->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateEnd_currentPageChanged(int, int)));
|
||||||
disconnect(ui->dateStart->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateStart_currentPageChanged(int, int)));
|
disconnect(ui->dateStart->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateStart_currentPageChanged(int, int)));
|
||||||
|
|
||||||
|
// Don't save custom date range. Default to last 3 months
|
||||||
|
if (p_profile->general->lastOverviewRange() == 8) {
|
||||||
|
p_profile->general->setLastOverviewRange(4);
|
||||||
|
}
|
||||||
|
|
||||||
// Save graph orders and pin status, etc...
|
// Save graph orders and pin status, etc...
|
||||||
GraphView->SaveSettings("Overview");//no trans
|
GraphView->SaveSettings("Overview");//no trans
|
||||||
|
|
||||||
@ -470,6 +475,7 @@ void Overview::on_rangeCombo_activated(int index)
|
|||||||
|
|
||||||
ui->dateStart->setMaximumDate(ui->dateEnd->date());
|
ui->dateStart->setMaximumDate(ui->dateEnd->date());
|
||||||
ui->dateEnd->setMinimumDate(ui->dateStart->date());
|
ui->dateEnd->setMinimumDate(ui->dateStart->date());
|
||||||
|
p_profile->general->setLastOverviewRange(8);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user