Skip to content

Commit

Permalink
Replace TextField by TextArea in alarm-ui
Browse files Browse the repository at this point in the history
Replace TextField by TextArea in alamr-ui for PV List edition see issue ControlSystemStudio#2090
  • Loading branch information
katysaintin authored Dec 17, 2021
1 parent 21740a3 commit d754105
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import javafx.scene.control.Label;
import javafx.scene.control.MenuItem;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TextField;
import javafx.scene.control.TextArea;
import javafx.scene.control.ToggleGroup;
import javafx.scene.control.Tooltip;
import javafx.scene.layout.GridPane;
Expand All @@ -41,7 +41,7 @@ class AddComponentAction extends MenuItem
{
private static class AddComponentDialog extends Dialog<String>
{
private final TextField name = new TextField();
private final TextArea name = new TextArea();
private final Label message = new Label();
private final RadioButton type_node = new RadioButton("Node"),
type_pv = new RadioButton("PV/s");
Expand Down

0 comments on commit d754105

Please sign in to comment.