1
0
Fork 0
mirror of https://gitlab.com/kauron/jstudy synced 2025-09-30 21:01:10 +02:00

TestController: changed JFXTextField to TextField (the former gave utf-8 related input errors)

This commit is contained in:
Carlos Galindo 2016-12-08 22:37:08 +01:00
commit cb27488507
Signed by: kauron
GPG key ID: 83E68706DEE119A3
2 changed files with 4 additions and 6 deletions

View file

@ -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