mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix for missing details data in channelHasData function
This commit is contained in:
parent
7ce9896075
commit
334879114d
@ -349,12 +349,13 @@ bool Day::channelExists(ChannelID id)
|
|||||||
}
|
}
|
||||||
bool Day::channelHasData(ChannelID id)
|
bool Day::channelHasData(ChannelID id)
|
||||||
{
|
{
|
||||||
|
bool r=false;
|
||||||
for (int i=0;i<sessions.size();i++) {
|
for (int i=0;i<sessions.size();i++) {
|
||||||
if (!sessions[i]->channelExists(id)) {
|
if (sessions[i]->channelExists(id)) {
|
||||||
return false;
|
r=true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Day::OpenEvents()
|
void Day::OpenEvents()
|
||||||
|
@ -358,6 +358,7 @@ void Daily::on_calendar_selectionChanged()
|
|||||||
|
|
||||||
Load(ui->calendar->selectedDate());
|
Load(ui->calendar->selectedDate());
|
||||||
ui->calButton->setText(ui->calendar->selectedDate().toString(Qt::TextDate));
|
ui->calButton->setText(ui->calendar->selectedDate().toString(Qt::TextDate));
|
||||||
|
ui->calendar->setFocus(Qt::ActiveWindowFocusReason);
|
||||||
}
|
}
|
||||||
void Daily::ResetGraphLayout()
|
void Daily::ResetGraphLayout()
|
||||||
{
|
{
|
||||||
@ -865,8 +866,9 @@ void Daily::on_nextDayButton_clicked()
|
|||||||
|
|
||||||
void Daily::on_calButton_toggled(bool checked)
|
void Daily::on_calButton_toggled(bool checked)
|
||||||
{
|
{
|
||||||
ui->calendar->setVisible(checked);
|
bool b=!ui->calendar->isVisible();
|
||||||
if (!checked) ui->calButton->setArrowType(Qt::DownArrow);
|
ui->calendar->setVisible(b);
|
||||||
|
if (!b) ui->calButton->setArrowType(Qt::DownArrow);
|
||||||
else ui->calButton->setArrowType(Qt::UpArrow);
|
else ui->calButton->setArrowType(Qt::UpArrow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user