We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf9383a commit 53d1572Copy full SHA for 53d1572
idea-plugin/src/main/kotlin/com/itangcent/idea/plugin/dialog/SuvApiExportDialog.kt
@@ -25,7 +25,9 @@ private class SuvApiExportPanel : BorderLayoutPanel() {
25
minimumSize = Dimension(100, 30)
26
}
27
val selectAllCheckBox = JBCheckBox()
28
- val channelComboBox = ComboBox<Any?>()
+ val channelComboBox = ComboBox<Any?>().apply {
29
+ isSwingPopup = false
30
+ }
31
val buttonOK = JButton("✔").apply {
32
preferredSize = Dimension(40, 30)
33
minimumSize = Dimension(40, 30)
0 commit comments