mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-02 18:36:49 +01:00
Comp fix for OS2. + Notifications correctly re-displays on Linux.
This commit is contained in:
parent
f96fd4422a
commit
0969d6c693
@ -67,8 +67,9 @@ void Notification::notify(const QString &text, const QString &title, const QIcon
|
|||||||
|
|
||||||
// Show it.
|
// Show it.
|
||||||
updateGeometries();
|
updateGeometries();
|
||||||
repaint();
|
|
||||||
show();
|
QTimer::singleShot(0, this, SLOT(show()));
|
||||||
|
QTimer::singleShot(0, this, SLOT(repaint()));
|
||||||
|
|
||||||
m_timerId = startTimer(10000);
|
m_timerId = startTimer(10000);
|
||||||
}
|
}
|
||||||
|
@ -183,7 +183,7 @@ QString AdBlockManager::baseSubscriptionDirectory() {
|
|||||||
directory = qApp->homeFolderPath() + QDir::separator() + QString(APP_LOW_H_NAME);
|
directory = qApp->homeFolderPath() + QDir::separator() + QString(APP_LOW_H_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
directory += QDir::separator() + ADBLOCK_BASE_DIRECTORY_NAME;
|
directory += QString(QDir::separator()) + ADBLOCK_BASE_DIRECTORY_NAME;
|
||||||
return QDir::toNativeSeparators(directory);
|
return QDir::toNativeSeparators(directory);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user