IDEA-336242 fix

GitOrigin-RevId: 2f7f7c929c7b8ffafba2b127d9984e4de4e6e393
This commit is contained in:
anna.gromova
2024-02-05 17:31:54 +01:00
committed by intellij-monorepo-bot
parent 690bd4036d
commit e1345a3eb2

View File

@@ -16,6 +16,7 @@ import javax.swing.Action
import javax.swing.JButton
import javax.swing.JComponent
import javax.swing.JPanel
import javax.swing.border.Border
class OnboardingDialog(val cancelCallback: () -> Unit) : DialogWrapper(null, null, true, IdeModalityType.IDE,
false) {
@@ -68,10 +69,11 @@ class OnboardingDialog(val cancelCallback: () -> Unit) : DialogWrapper(null, nul
tracker.onEnter(page.stage)
}
override fun getStyle(): DialogStyle {
return DialogStyle.COMPACT
override fun createContentPaneBorder(): Border {
return JBUI.Borders.empty()
}
private val overlay = BannerOverlay(pane)
fun initialize() {