完善vip 解析 2023年2月17日16:45:39
parent
8610f08ec4
commit
2d9f3e745a
|
|
@ -216,12 +216,12 @@ public class PlayerController {
|
||||||
|
|
||||||
this.width.addListener((observable, oldValue, newValue) -> {
|
this.width.addListener((observable, oldValue, newValue) -> {
|
||||||
PlayerController.this.root.setPrefWidth(newValue.doubleValue() - listView.getWidth());
|
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) -> {
|
this.height.addListener((observable, oldValue, newValue) -> {
|
||||||
PlayerController.this.root.setPrefHeight(newValue.doubleValue() - listView.getHeight());
|
PlayerController.this.root.setPrefHeight(newValue.doubleValue() - listView.getHeight());
|
||||||
System.out.println(newValue.doubleValue());
|
log.info("newValue.doubleValue():{}" ,newValue.doubleValue());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue