|
|
|
@ -121,9 +121,12 @@ public abstract class ItemEditableComboBoxPanel extends JPanel {
|
|
|
|
|
while(itemIt.hasNext()) { |
|
|
|
|
model.addElement(itemIt.next()); |
|
|
|
|
} |
|
|
|
|
// 重置下拉框高度 值一样时不会生效 所以先加再减下
|
|
|
|
|
// 如果加载成功 但是下拉框是可见的 下拉框高度是会固定为原始高度 不会因为填充了更多下拉项而变化
|
|
|
|
|
// 需要重新设置下拉框高度 但值一样时相关事件不会生效 所以先加再减下
|
|
|
|
|
if (itemComboBox.isPopupVisible()) { |
|
|
|
|
itemComboBox.setMaximumRowCount(itemComboBox.getMaximumRowCount() + 1); |
|
|
|
|
itemComboBox.setMaximumRowCount(itemComboBox.getMaximumRowCount() - 1); |
|
|
|
|
} |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
if (!(e instanceof CancellationException)) { |
|
|
|
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
|
|
|