mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Enable plugins by default also in portable mode
AdBlock now needs plugins enabled to be loaded.
This commit is contained in:
parent
f1a3b7643e
commit
d5608d823b
|
@ -84,7 +84,7 @@ void Plugins::loadSettings()
|
||||||
{
|
{
|
||||||
Settings settings;
|
Settings settings;
|
||||||
settings.beginGroup("Plugin-Settings");
|
settings.beginGroup("Plugin-Settings");
|
||||||
m_pluginsEnabled = settings.value("EnablePlugins", !mApp->isPortable()).toBool();
|
m_pluginsEnabled = settings.value("EnablePlugins", true).toBool();
|
||||||
m_allowedPlugins = settings.value("AllowedPlugins", QStringList()).toStringList();
|
m_allowedPlugins = settings.value("AllowedPlugins", QStringList()).toStringList();
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ============================================================
|
/* ============================================================
|
||||||
* Falkon - Qt web browser
|
* Falkon - Qt web browser
|
||||||
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -41,7 +41,7 @@ PluginsManager::PluginsManager(QWidget* parent)
|
||||||
//Application Extensions
|
//Application Extensions
|
||||||
Settings settings;
|
Settings settings;
|
||||||
settings.beginGroup("Plugin-Settings");
|
settings.beginGroup("Plugin-Settings");
|
||||||
bool appPluginsEnabled = settings.value("EnablePlugins", !mApp->isPortable()).toBool();
|
bool appPluginsEnabled = settings.value("EnablePlugins", true).toBool();
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
ui->allowAppPlugins->setChecked(appPluginsEnabled);
|
ui->allowAppPlugins->setChecked(appPluginsEnabled);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user