[education/rkward] rkward/settings: Do not force use of binary packages on Windows and Mac
Thomas Friedrichsmeier
null at kde.org
Tue Sep 23 18:09:57 BST 2025
Git commit 5bc3111e16a1f4272b6ae51eafffb89b5ec3621b by Thomas Friedrichsmeier.
Committed on 23/09/2025 at 16:58.
Pushed by tfry into branch 'master'.
Do not force use of binary packages on Windows and Mac
M +1 -1 rkward/settings/rksettingsmoduler.cpp
https://invent.kde.org/education/rkward/-/commit/5bc3111e16a1f4272b6ae51eafffb89b5ec3621b
diff --git a/rkward/settings/rksettingsmoduler.cpp b/rkward/settings/rksettingsmoduler.cpp
index dd04d4ff5..3cbf7f915 100644
--- a/rkward/settings/rksettingsmoduler.cpp
+++ b/rkward/settings/rksettingsmoduler.cpp
@@ -519,7 +519,7 @@ QString RKSettingsModuleRPackages::pkgTypeOption() {
#if defined Q_OS_WIN || defined Q_OS_MACOS
ret.append(u"options (pkgType=\""_s);
if (source_packages) ret.append(u"source"_s);
- else ret.append(u"binary"_s); // "automatically select appropriate binary"
+ else ret.append(u"both"_s); // "automatically select appropriate binary, if available, else consider source package"
ret.append(u"\")\n"_s);
#endif
return ret;
More information about the rkward-tracker
mailing list