From 3d8f38b9011e88c4fe48eed048ca151be2c9631a Mon Sep 17 00:00:00 2001 From: TimurMalanin Date: Mon, 3 Aug 2026 14:47:22 +0200 Subject: [PATCH] PY-91394 [PPTW] Add top border to bottom panel in install dialog version panel UI (cherry picked from commit 12dd3c7d4a7e7cd123f27bd26e6e0cb0f3dc81a5) IJ-MR-216737 GitOrigin-RevId: 2c8e639f27bc3d5fabae9d40ca7260bafd127683 --- .../packaging/toolwindow/ui/PyInstallDialogVersionPanel.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/python/src/com/jetbrains/python/packaging/toolwindow/ui/PyInstallDialogVersionPanel.kt b/python/src/com/jetbrains/python/packaging/toolwindow/ui/PyInstallDialogVersionPanel.kt index bcf837fcb19a..44fdd6e155ed 100644 --- a/python/src/com/jetbrains/python/packaging/toolwindow/ui/PyInstallDialogVersionPanel.kt +++ b/python/src/com/jetbrains/python/packaging/toolwindow/ui/PyInstallDialogVersionPanel.kt @@ -123,6 +123,7 @@ internal class PyInstallDialogVersionPanel( val panel = JPanel(BorderLayout()).apply { isOpaque = false preferredSize = Dimension(-1, JBUI.CurrentTheme.List.rowHeight() * 2 + JBValue.UIInteger("Component.focusWidth", 2).get() * 2) + border = JBUI.Borders.customLineTop(JBUI.CurrentTheme.Popup.separatorColor()) } val mainPanel = JPanel(BorderLayout()).apply { isOpaque = false