Skip to content

Commit

Permalink
fix: Fix auto-collapse for popup items on select channel (#1075)
Browse files Browse the repository at this point in the history
(cherry picked from commit 53d1572)
  • Loading branch information
tangcent committed Nov 19, 2023
1 parent e8f07c0 commit d759761
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ private class SuvApiExportPanel : BorderLayoutPanel() {
minimumSize = Dimension(100, 30)
}
val selectAllCheckBox = JBCheckBox()
val channelComboBox = ComboBox<Any?>()
val channelComboBox = ComboBox<Any?>().apply {
isSwingPopup = false
}
val buttonOK = JButton("").apply {
preferredSize = Dimension(40, 30)
minimumSize = Dimension(40, 30)
Expand Down

0 comments on commit d759761

Please sign in to comment.