Some tweaks of notifications.
This commit is contained in:
parent
73ff85418e
commit
057ebc47d6
@ -210,7 +210,6 @@ void FeedsView::executeNextAutoUpdate() {
|
|||||||
QList<Feed*> feeds_for_update = m_sourceModel->feedsForScheduledUpdate(m_globalAutoUpdateEnabled &&
|
QList<Feed*> feeds_for_update = m_sourceModel->feedsForScheduledUpdate(m_globalAutoUpdateEnabled &&
|
||||||
m_globalAutoUpdateRemainingInterval == 0);
|
m_globalAutoUpdateRemainingInterval == 0);
|
||||||
|
|
||||||
// No feeds are scheduled for update now, unlock the master lock.
|
|
||||||
qApp->feedUpdateLock()->unlock();
|
qApp->feedUpdateLock()->unlock();
|
||||||
|
|
||||||
if (!feeds_for_update.isEmpty()) {
|
if (!feeds_for_update.isEmpty()) {
|
||||||
@ -219,7 +218,7 @@ void FeedsView::executeNextAutoUpdate() {
|
|||||||
|
|
||||||
// NOTE: OSD/bubble informing about performing
|
// NOTE: OSD/bubble informing about performing
|
||||||
// of scheduled update can be shown now.
|
// of scheduled update can be shown now.
|
||||||
qApp->showGuiMessage(tr("Startin auto-update of some feeds"),
|
qApp->showGuiMessage(tr("Starting auto-update of some feeds"),
|
||||||
tr("I will auto-update %n feed(s).", 0, feeds_for_update.size()),
|
tr("I will auto-update %n feed(s).", 0, feeds_for_update.size()),
|
||||||
QSystemTrayIcon::Information);
|
QSystemTrayIcon::Information);
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ void Notification::notify(const QString &text, const QString &title, const QIcon
|
|||||||
// Show it.
|
// Show it.
|
||||||
updateGeometries();
|
updateGeometries();
|
||||||
|
|
||||||
QTimer::singleShot(0, this, SLOT(show()));
|
QTimer::singleShot(20, this, SLOT(show()));
|
||||||
QTimer::singleShot(0, this, SLOT(repaint()));
|
QTimer::singleShot(0, this, SLOT(repaint()));
|
||||||
|
|
||||||
m_timerId = startTimer(10000);
|
m_timerId = startTimer(10000);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user