diff --git a/src/gui/feedsview.cpp b/src/gui/feedsview.cpp index 694394424..e17fe00e1 100755 --- a/src/gui/feedsview.cpp +++ b/src/gui/feedsview.cpp @@ -210,7 +210,6 @@ void FeedsView::executeNextAutoUpdate() { QList feeds_for_update = m_sourceModel->feedsForScheduledUpdate(m_globalAutoUpdateEnabled && m_globalAutoUpdateRemainingInterval == 0); - // No feeds are scheduled for update now, unlock the master lock. qApp->feedUpdateLock()->unlock(); if (!feeds_for_update.isEmpty()) { @@ -219,7 +218,7 @@ void FeedsView::executeNextAutoUpdate() { // NOTE: OSD/bubble informing about performing // 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()), QSystemTrayIcon::Information); } diff --git a/src/gui/notifications/notification.cpp b/src/gui/notifications/notification.cpp index 0ae423386..453c75125 100644 --- a/src/gui/notifications/notification.cpp +++ b/src/gui/notifications/notification.cpp @@ -68,7 +68,7 @@ void Notification::notify(const QString &text, const QString &title, const QIcon // Show it. updateGeometries(); - QTimer::singleShot(0, this, SLOT(show())); + QTimer::singleShot(20, this, SLOT(show())); QTimer::singleShot(0, this, SLOT(repaint())); m_timerId = startTimer(10000);