Skip to content

Commit

Permalink
Change default value for ignore uploadable
Browse files Browse the repository at this point in the history
  • Loading branch information
yyjhao committed Aug 30, 2013
1 parent 754dff1 commit 7b14f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Settings::Settings(QDir baseDir, QObject *parent) :
_notify = settingsPrivate->value("notify",true).toBool();
_notifyAnnouncement = settingsPrivate->value("notifyAnnouncement",true).toBool();
_recents = settingsPrivate->value("recentFiles",QStringList()).toStringList();
_ignoreUploadable = settingsPrivate->value("ignoreUploadable", false).toBool();
_ignoreUploadable = settingsPrivate->value("ignoreUploadable", true).toBool();
_lastAnnouncementTime = settingsPrivate->value("lastAnnouncementTime", QDateTime::currentDateTime()).toDateTime();
pagesInfoFile = new QFile(baseDir.filePath("pagesInfo.json"), this);
if(!pagesInfoFile->exists()){
Expand Down

0 comments on commit 7b14f06

Please sign in to comment.