Skip to content

Commit

Permalink
Merge pull request #28 from trail-of-forks/expandable-text-field
Browse files Browse the repository at this point in the history
Expandable text field for arguments
  • Loading branch information
garyttierney authored Dec 9, 2022
2 parents 2576518 + e6fba3a commit 4c92af5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import com.intellij.execution.ui.JrePathEditor
import com.intellij.openapi.options.SettingsEditor
import com.intellij.openapi.project.Project
import com.intellij.ui.PanelWithAnchor
import com.intellij.ui.components.fields.ExpandableTextField
import com.intellij.ui.layout.CCFlags
import com.intellij.ui.layout.LCFlags
import com.intellij.ui.layout.panel
Expand All @@ -19,7 +20,7 @@ class GhidraLauncherConfigurationEditor(project: Project) : SettingsEditor<Ghidr

private var anchorComponent: JComponent? = null
private val jreEditor = JrePathEditor(DefaultJreSelector.projectSdk(project))
private val argEditor = JTextField()
private val argEditor = ExpandableTextField()
private val isHeadless = JCheckBox()

private val configPanel = panel(LCFlags.fillX) {
Expand Down

0 comments on commit 4c92af5

Please sign in to comment.