From 3d58f137246209daf4c6adde5b44ceda9ced82d3 Mon Sep 17 00:00:00 2001 From: dsc Date: Sat, 10 Oct 2020 18:00:07 +0200 Subject: [PATCH] fix desktop paths (xdgPaths) --- src/utils/utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/utils.h b/src/utils/utils.h index a91c539..42c4155 100644 --- a/src/utils/utils.h +++ b/src/utils/utils.h @@ -49,8 +49,8 @@ struct xdgDesktopEntryPaths { }; const xdgDesktopEntryPaths xdgPaths = { - QString("%1/monero-gui.desktop").arg(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)), - QString("%1/.local/share/icons/monero.png").arg(QDir::homePath()), + QString("%1/feather.desktop").arg(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)), + QString("%1/.local/share/icons/feather.png").arg(QDir::homePath()), QString("/") };