diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadPage.java index f6dca4575..e20b06a32 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadPage.java @@ -413,17 +413,17 @@ public class DownloadPage extends Control implements DecoratorPage { for (ModLoaderType modLoaderType : dataItem.getLoaders()) { switch (modLoaderType) { case FORGE: - graphicPane.getChildren().setAll(SVG.releaseCircleOutline(Theme.blackFillBinding(), 24, 24)); content.getTags().add(i18n("install.installer.forge")); break; case FABRIC: - graphicPane.getChildren().setAll(SVG.releaseCircleOutline(Theme.blackFillBinding(), 24, 24)); content.getTags().add(i18n("install.installer.fabric")); break; case LITE_LOADER: - graphicPane.getChildren().setAll(SVG.releaseCircleOutline(Theme.blackFillBinding(), 24, 24)); content.getTags().add(i18n("install.installer.liteloader")); break; + case QUILT: + content.getTags().add(i18n("install.installer.quilt")); + break; } }