mirror of
https://github.com/tnodir/fort
synced 2024-11-15 10:15:07 +00:00
UI: Clear alerted state on quota changes.
This commit is contained in:
parent
a2caa5a59d
commit
d0acc99417
@ -17,12 +17,24 @@ QuotaManager::QuotaManager(FortSettings *fortSettings,
|
||||
|
||||
void QuotaManager::setQuotaDayBytes(qint64 bytes)
|
||||
{
|
||||
if (m_quotaDayBytes != bytes) {
|
||||
if (m_quotaDayBytes != 0) {
|
||||
setQuotaDayAlerted(0);
|
||||
}
|
||||
|
||||
m_quotaDayBytes = bytes;
|
||||
}
|
||||
}
|
||||
|
||||
void QuotaManager::setQuotaMonthBytes(qint64 bytes)
|
||||
{
|
||||
if (m_quotaMonthBytes != bytes) {
|
||||
if (m_quotaMonthBytes != 0) {
|
||||
setQuotaMonthAlerted(0);
|
||||
}
|
||||
|
||||
m_quotaMonthBytes = bytes;
|
||||
}
|
||||
}
|
||||
|
||||
void QuotaManager::setTrafDayBytes(qint64 bytes)
|
||||
|
Loading…
Reference in New Issue
Block a user