Fixed bug in configuring band hopping
This commit is contained in:
parent
8b07b56250
commit
a5b6984ede
@ -298,8 +298,8 @@ public:
|
|||||||
return {
|
return {
|
||||||
band,
|
band,
|
||||||
freq_.frequency(),
|
freq_.frequency(),
|
||||||
qMin(a, b),
|
a,
|
||||||
qMax(a, b),
|
b,
|
||||||
description_.text ()};
|
description_.text ()};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -490,9 +490,8 @@ bool StationList::impl::setData (QModelIndex const& model_index, QVariant const&
|
|||||||
auto t = QTime::fromString(s);
|
auto t = QTime::fromString(s);
|
||||||
auto at = QDateTime(QDate(2000,1,1), t, Qt::UTC);
|
auto at = QDateTime(QDate(2000,1,1), t, Qt::UTC);
|
||||||
auto until = stations_[row].switch_until_;
|
auto until = stations_[row].switch_until_;
|
||||||
|
stations_[row].switch_at_ = at;
|
||||||
stations_[row].switch_at_ = qMin(at, until);
|
stations_[row].switch_until_ = until;
|
||||||
stations_[row].switch_until_ = qMax(at, until);
|
|
||||||
|
|
||||||
Q_EMIT dataChanged (model_index, model_index, roles);
|
Q_EMIT dataChanged (model_index, model_index, roles);
|
||||||
|
|
||||||
@ -511,9 +510,8 @@ bool StationList::impl::setData (QModelIndex const& model_index, QVariant const&
|
|||||||
auto t = QTime::fromString(s);
|
auto t = QTime::fromString(s);
|
||||||
auto until = QDateTime(QDate(2000,1,1), t, Qt::UTC);
|
auto until = QDateTime(QDate(2000,1,1), t, Qt::UTC);
|
||||||
auto at = stations_[row].switch_at_;
|
auto at = stations_[row].switch_at_;
|
||||||
|
stations_[row].switch_at_ = at;
|
||||||
stations_[row].switch_at_ = qMin(at, until);
|
stations_[row].switch_until_ = until;
|
||||||
stations_[row].switch_until_ = qMax(at, until);
|
|
||||||
|
|
||||||
Q_EMIT dataChanged (model_index, model_index, roles);
|
Q_EMIT dataChanged (model_index, model_index, roles);
|
||||||
|
|
||||||
|
@ -1339,8 +1339,7 @@ void MainWindow::tryBandHop(){
|
|||||||
// and if we are switching to a different frequency than the last hop. this allows us to switch bands at that time,
|
// and if we are switching to a different frequency than the last hop. this allows us to switch bands at that time,
|
||||||
// but then later we can later switch to a different band if needed without the automatic band switching to take over
|
// but then later we can later switch to a different band if needed without the automatic band switching to take over
|
||||||
bool canSwitch = (
|
bool canSwitch = (
|
||||||
station.switch_at_ <= d &&
|
(station.switch_at_ <= d || d <= station.switch_until_) &&
|
||||||
d <= station.switch_until_ &&
|
|
||||||
(m_bandHopped || (!m_bandHopped && station.frequency_ != m_bandHoppedFreq)) &&
|
(m_bandHopped || (!m_bandHopped && station.frequency_ != m_bandHoppedFreq)) &&
|
||||||
station.frequency_ != dialFreq
|
station.frequency_ != dialFreq
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user