diff --git a/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml b/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
index 93559d0b3..861f65e74 100644
--- a/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
+++ b/src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml
@@ -16,57 +16,91 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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);
+ }
}