Skip to content

Commit 53d1572

Browse files
authored
fix: Fix auto-collapse for popup items on select channel (#1075)
1 parent bf9383a commit 53d1572

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

idea-plugin/src/main/kotlin/com/itangcent/idea/plugin/dialog/SuvApiExportDialog.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ private class SuvApiExportPanel : BorderLayoutPanel() {
2525
minimumSize = Dimension(100, 30)
2626
}
2727
val selectAllCheckBox = JBCheckBox()
28-
val channelComboBox = ComboBox<Any?>()
28+
val channelComboBox = ComboBox<Any?>().apply {
29+
isSwingPopup = false
30+
}
2931
val buttonOK = JButton("").apply {
3032
preferredSize = Dimension(40, 30)
3133
minimumSize = Dimension(40, 30)

0 commit comments

Comments
 (0)