Fixed Click2Flash plugin disabled by default

Also updated README file with current version informations
remotes/origin/falkon
nowrep 15 years ago
parent 7808408cc8
commit 3b0ac5b3b5
  1. 4
      README.md
  2. 2
      src/preferences/pluginslist.cpp

@ -30,7 +30,7 @@ First public release was 1.0.0-b4.
Compiling
----------------------------------------------------------------------------------------
Before you start compiling, make sure that you have installed the Qt (>=4.7) development libraries
Before you start compiling, make sure that you have installed the Qt (>=4.7) development libraries
and you have read the BUILDING information.
Then you can start compiling by running this commands:
@ -48,7 +48,7 @@ To install QupZilla, you will have to run this command: (it may be neccessary to
Current version
----------------------------------------------------------------------------------------
The current released version of QupZilla is 1.0.0-rc1. You can download precompiled packages
The current released version of QupZilla is 1.0.0. You can download precompiled packages
and the sources from the download section.
However, if you want the latest revision, just take the latest code snapshot either by
downloading a tarball or running:

@ -47,7 +47,7 @@ PluginsList::PluginsList(QWidget* parent) :
settings.beginGroup("ClickToFlash");
QStringList whitelist = mApp->plugins()->c2f_getWhiteList();
ui->allowClick2Flash->setChecked(settings.value("Enable", true).toBool());
ui->allowClick2Flash->setChecked(settings.value("Enable", false).toBool());
settings.endGroup();
foreach(QString site, whitelist) {
QTreeWidgetItem* item = new QTreeWidgetItem(ui->whitelist);

Loading…
Cancel
Save