File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
HMCL/src/main/java/org/jackhuang/hmcl/ui/versions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030import javafx .scene .layout .*;
3131import javafx .scene .text .Text ;
3232import org .jackhuang .hmcl .mod .*;
33- import org .jackhuang .hmcl .setting .Theme ;
3433import org .jackhuang .hmcl .task .FileDownloadTask ;
3534import org .jackhuang .hmcl .task .Schedulers ;
3635import org .jackhuang .hmcl .task .Task ;
36+ import org .jackhuang .hmcl .theme .Theme ;
3737import org .jackhuang .hmcl .ui .Controllers ;
3838import org .jackhuang .hmcl .ui .FXUtils ;
3939import org .jackhuang .hmcl .ui .SVG ;
@@ -307,15 +307,15 @@ private static final class ModItem extends StackPane {
307307 switch (targetVersion .getVersionType ()) {
308308 case Alpha :
309309 content .addTag (i18n ("mods.channel.alpha" ));
310- graphicPane .getChildren ().setAll (SVG .ALPHA_CIRCLE .createIcon (Theme . blackFill (), 24 ));
310+ graphicPane .getChildren ().setAll (SVG .ALPHA_CIRCLE .createIcon (24 ));
311311 break ;
312312 case Beta :
313313 content .addTag (i18n ("mods.channel.beta" ));
314- graphicPane .getChildren ().setAll (SVG .BETA_CIRCLE .createIcon (Theme . blackFill (), 24 ));
314+ graphicPane .getChildren ().setAll (SVG .BETA_CIRCLE .createIcon (24 ));
315315 break ;
316316 case Release :
317317 content .addTag (i18n ("mods.channel.release" ));
318- graphicPane .getChildren ().setAll (SVG .RELEASE_CIRCLE .createIcon (Theme . blackFill (), 24 ));
318+ graphicPane .getChildren ().setAll (SVG .RELEASE_CIRCLE .createIcon (24 ));
319319 break ;
320320 }
321321
You can’t perform that action at this time.
0 commit comments