From fbbc5886a9e162aec606adfc917e20191843b8b9 Mon Sep 17 00:00:00 2001
From: parhelia512 <0011d3@gmail.com>
Date: Sun, 23 Mar 2025 21:11:23 +0800
Subject: [PATCH] Display the download hyperlink in QMessageBox
---
src/main.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.cpp b/src/main.cpp
index d0216e9..27d57bd 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -72,7 +72,7 @@ int main(int argc, char* argv[]) {
#ifdef Q_OS_WIN
if (!checkVCRedist())
{
- QMessageBox::critical(nullptr, "Cannot run Nekoray", "You need to install VC 2022 Redistributable, Download it from: https://aka.ms/vs/17/release/vc_redist.x64.exe");
+ QMessageBox::critical(nullptr, "Cannot run Nekoray", "You need to install VC 2022 Redistributable.
Download it from here".);
return 1;
}
#endif