fun showTextArea()

in test-recorder/src/main/kotlin/com/intellij/remoterobot/recorder/ui/dialogs/CreateNewTypingDialogWrapper.kt [31:43]


        fun showTextArea() {
            addToCenter(
                FormBuilder.createFormBuilder()
                    .addLabeledComponent("Text to type", JBTextField(model.text).apply {
                        isVisible = true
                        requestFocus()
                        this.document.whenTextChanged {
                            model.text = text
                        }
                    })
                    .panel
            )
        }