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 4eb2775 commit 508ed2fCopy full SHA for 508ed2f
src/main/kotlin/org/polyfrost/intelliprocessor/utils/SourceSetFileDialog.kt
@@ -53,7 +53,9 @@ class SourceSetFileDialog(
53
if (it.isNonGenerated) {
54
font = font.deriveFont(Font.BOLD)
55
}
56
- if (!it.metOpeningCondition) foreground = JBColor.GRAY
+ if (!it.metOpeningCondition) {
57
+ foreground = JBColor.GRAY
58
+ }
59
60
61
@@ -120,7 +122,7 @@ class SourceSetFileDialog(
120
122
panel.add(search, BorderLayout.NORTH)
121
123
panel.add(JBScrollPane(list), BorderLayout.CENTER)
124
bottomPanelOrNull()?.let {
- panel.add(it,BorderLayout.SOUTH)
125
+ panel.add(it, BorderLayout.SOUTH)
126
127
return panel
128
0 commit comments