Page MenuHome GnuPG

(An Untitled Masterwork)
ActivePublic

Authored by aheinecke on Nov 9 2023, 10:18 AM.
- const auto backendVersions = Kleo::backendVersionInfo();
- if (!backendVersions.empty()) {
+ QTimer::singleShot(0, [this]() {
+ const auto backendVersions = Kleo::backendVersionInfo();
+ if (!backendVersions.empty()) {
setOtherText(i18nc("Preceeds a list of applications/libraries used by Kleopatra", "Uses:") //
- + QLatin1String{"<ul><li>"} //
- + backendVersions.join(QLatin1String{"</li><li>"}) //
- + QLatin1String{"</li></ul>"} //
- + otherText());
- }
+ + QLatin1String{"<ul><li>"} //
+ + backendVersions.join(QLatin1String{"</li><li>"}) //
+ + QLatin1String{"</li></ul>"} //
+ + otherText());
+ }
+ });