mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +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.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();
|
||||
settings.endGroup();
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* ============================================================
|
||||
* 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
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -41,7 +41,7 @@ PluginsManager::PluginsManager(QWidget* parent)
|
||||
//Application Extensions
|
||||
Settings settings;
|
||||
settings.beginGroup("Plugin-Settings");
|
||||
bool appPluginsEnabled = settings.value("EnablePlugins", !mApp->isPortable()).toBool();
|
||||
bool appPluginsEnabled = settings.value("EnablePlugins", true).toBool();
|
||||
settings.endGroup();
|
||||
|
||||
ui->allowAppPlugins->setChecked(appPluginsEnabled);
|
||||
|
Loading…
Reference in New Issue
Block a user