完善vip 解析 2023年2月17日16:45:39

master
zhangmeng 2023-02-17 18:12:27 +08:00
parent 8610f08ec4
commit 2d9f3e745a
1 changed files with 2 additions and 2 deletions

View File

@ -216,12 +216,12 @@ public class PlayerController {
this.width.addListener((observable, oldValue, newValue) -> {
PlayerController.this.root.setPrefWidth(newValue.doubleValue() - listView.getWidth());
System.out.println(newValue.doubleValue());
log.info("newValue.doubleValue():{}",newValue.doubleValue());
});
this.height.addListener((observable, oldValue, newValue) -> {
PlayerController.this.root.setPrefHeight(newValue.doubleValue() - listView.getHeight());
System.out.println(newValue.doubleValue());
log.info("newValue.doubleValue():{}" ,newValue.doubleValue());
});
}