diff --git a/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml b/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
index 50dfe6ab1..861f65e74 100644
--- a/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
+++ b/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
@@ -15,66 +15,92 @@
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Settings.Set("ShownTelemetryBanner", true);
}
+
+ public static async Task NoDesktopShortcutsFound()
+ {
+ var dialog = DialogFactory.Create();
+ dialog.Title = CoreTools.Translate("Manual scan");
+ dialog.Content = CoreTools.Translate("No new shortcuts were found during the scan.");
+ dialog.CloseButtonText = CoreTools.Translate("Close");
+ await Window.ShowDialogAsync(dialog);
+ }
}