mirror of
https://gitlab.com/kauron/jstudy
synced 2024-11-13 07:33:44 +01:00
TestController: changed JFXTextField to TextField (the former gave utf-8 related input errors)
This commit is contained in:
parent
112ab9f293
commit
cb27488507
2 changed files with 4 additions and 6 deletions
|
@ -1,6 +1,5 @@
|
|||
package es.kauron.jstudy.controller;
|
||||
|
||||
import com.jfoenix.controls.JFXTextField;
|
||||
import es.kauron.jstudy.model.AppConfig;
|
||||
import es.kauron.jstudy.model.TestItem;
|
||||
import javafx.event.ActionEvent;
|
||||
|
@ -9,6 +8,7 @@ import javafx.fxml.Initializable;
|
|||
import javafx.geometry.Insets;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.ProgressBar;
|
||||
import javafx.scene.control.TextField;
|
||||
import javafx.scene.layout.HBox;
|
||||
|
||||
import java.net.URL;
|
||||
|
@ -19,7 +19,7 @@ public class TestController implements Initializable {
|
|||
@FXML
|
||||
private Label question, prevQuestion, prevAnswer, correctAnswer, progressLabel, correctLabel;
|
||||
@FXML
|
||||
private JFXTextField answer;
|
||||
private TextField answer;
|
||||
@FXML
|
||||
private ProgressBar progress;
|
||||
@FXML
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
|
||||
<?import com.jfoenix.controls.JFXTextField?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
@ -15,11 +13,11 @@
|
|||
<Font size="30.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<JFXTextField fx:id="answer" labelFloat="true" promptText="Answer">
|
||||
<TextField fx:id="answer">
|
||||
<VBox.margin>
|
||||
<Insets top="5.0" />
|
||||
</VBox.margin>
|
||||
</JFXTextField>
|
||||
</TextField>
|
||||
<Separator />
|
||||
<HBox fx:id="feedback" alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
|
||||
<children>
|
||||
|
|
Loading…
Reference in a new issue