made the automarkread option default

This commit is contained in:
Hauke Schade 2013-04-29 18:33:58 +02:00
parent 43d0fc11a0
commit 2b87098bc9

View file

@ -123,5 +123,5 @@ Settings::Settings(QObject *parent) : QObject(parent), m_settings(new QSettings(
_feeditemsOrder = m_settings->value("feeditemsOrder", 0).toInt();
_displayIcons = m_settings->value("displayIcons", true).toBool();
_webviewFontSize = m_settings->value("webviewFontSize", 22).toInt();
_autoMarkRead = m_settings->value("autoMarkRead", false).toBool();
_autoMarkRead = m_settings->value("autoMarkRead", true).toBool();
}