summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Bessent <lost.dragonist@gmail.com>2021-08-22 11:48:27 -0700
committerChris Bessent <lost.dragonist@gmail.com>2021-08-22 11:48:27 -0700
commit1b2f85a37150774ae8e708ad751824055b2ac4f2 (patch)
treed1de401ac8bc1e06ae8ef8f8703fd0e9f553654b
parenta279745aa28a0ee4509b3769b23a9bc6fe3ca278 (diff)
Enable forced libraries by default
-rw-r--r--src/profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profile.cpp b/src/profile.cpp
index 42a2ad16..b4b0ddcb 100644
--- a/src/profile.cpp
+++ b/src/profile.cpp
@@ -1073,7 +1073,7 @@ void Profile::storeSettingsByArray(const QString &prefix, const QList<QVariantMa
bool Profile::forcedLibrariesEnabled(const QString &executable) const
{
- return setting("forced_libraries", executable + "/enabled", false).toBool();
+ return setting("forced_libraries", executable + "/enabled", true).toBool();
}
void Profile::setForcedLibrariesEnabled(const QString &executable, bool enabled)