|
|
|
@ -154,7 +154,9 @@ public class NotificationDialog extends JDialog {
|
|
|
|
|
}) |
|
|
|
|
.collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
Function<Double, Integer> calStandardWidth = e -> e > 4 ? 280 : 300; |
|
|
|
|
// 当高度 / 15(每个字的大小) 大于 4 时,就会出现滚动条。
|
|
|
|
|
// 当出现滚动条时,需要将内部的宽度限制为 280, 否则会展示不出来
|
|
|
|
|
Function<Double, Integer> calStandardWidth = heightFactor -> heightFactor > 4 ? 280 : 300; |
|
|
|
|
|
|
|
|
|
int widthUnit = messageComponents.stream() |
|
|
|
|
.map((component) -> { |
|
|
|
|