From 3094302bcc51c11ab4372460daedf42ba43a4462 Mon Sep 17 00:00:00 2001 From: wise0n <96984685+wise0n@users.noreply.github.com> Date: Wed, 23 Aug 2023 11:57:01 -0400 Subject: [PATCH] Fix menu location in alert --- share/translations/keepassxc_en.ts | 8 ++++---- src/gui/EditWidgetIcons.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 4427ca488..884c34d9e 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -3468,10 +3468,6 @@ Supported extensions are: %1. Unable to fetch favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - - Existing icon selected. @@ -3513,6 +3509,10 @@ Supported extensions are: %1. + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties diff --git a/src/gui/EditWidgetIcons.cpp b/src/gui/EditWidgetIcons.cpp index 25542730c..c91974c4c 100644 --- a/src/gui/EditWidgetIcons.cpp +++ b/src/gui/EditWidgetIcons.cpp @@ -222,7 +222,7 @@ void EditWidgetIcons::iconReceived(const QString& url, const QImage& icon) QString message(tr("Unable to fetch favicon.")); if (!config()->get(Config::Security_IconDownloadFallback).toBool()) { message.append("\n").append( - tr("You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security")); + tr("You can enable the DuckDuckGo website icon service under Application Settings -> Security")); } emit messageEditEntry(message, MessageWidget::Error); return;