Skip to content

Commit 850a564

Browse files
authored
修复游戏 Java 路径显示滞后问题 (HMCL-dev#6419)
1 parent e8487c4 commit 850a564

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/RadioChoiceList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ public RadioChoiceList() {
8585

8686
group.selectedToggleProperty().addListener((observable, oldValue, newValue) -> {
8787
Choice<T> choice = newValue != null ? choiceByToggle.get(newValue) : null;
88-
selectedChoice.set(choice);
8988
selectedValue.set(choice != null ? choice.getValue() : null);
89+
selectedChoice.set(choice);
9090
});
9191

9292
selectedValue.addListener((observable, oldValue, newValue) -> {

0 commit comments

Comments
 (0)