From 1e42034a0b7ca74342eaca996fa1fdce6b16e8bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=9E=E5=BA=90?= <109708109+CiiLu@users.noreply.github.com> Date: Fri, 20 Feb 2026 21:23:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=89=E5=BD=B1=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E8=A2=AB=E9=94=99=E8=AF=AF=E5=9C=B0=E6=98=BE=E7=A4=BA=E4=B8=BA?= =?UTF-8?q?=E2=80=9C=E6=94=AF=E6=8C=81=E4=B8=AD=E8=8B=B1=E6=96=87=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E2=80=9D=20(#5558)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Glavo --- .../hmcl/ui/versions/HMCLLocalizedDownloadListPage.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/HMCLLocalizedDownloadListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/HMCLLocalizedDownloadListPage.java index 1dd5247d1..2f12e994b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/HMCLLocalizedDownloadListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/HMCLLocalizedDownloadListPage.java @@ -50,7 +50,9 @@ public final class HMCLLocalizedDownloadListPage extends DownloadListPage { } public static DownloadListPage ofShaderPack(DownloadPage.DownloadCallback callback, boolean versionSelection) { - return new HMCLLocalizedDownloadListPage(callback, versionSelection, RemoteModRepository.Type.SHADER_PACK, null, ModrinthRemoteModRepository.SHADER_PACKS); + var page = new HMCLLocalizedDownloadListPage(callback, versionSelection, RemoteModRepository.Type.SHADER_PACK, null, ModrinthRemoteModRepository.SHADER_PACKS); + page.supportChinese.set(false); + return page; } private HMCLLocalizedDownloadListPage(DownloadPage.DownloadCallback callback, boolean versionSelection, RemoteModRepository.Type type, CurseForgeRemoteModRepository curseForge, ModrinthRemoteModRepository modrinth) {