Skip to content

Commit

Permalink
convert tan after index finished 💄
Browse files Browse the repository at this point in the history
  • Loading branch information
madneal committed Dec 14, 2017
1 parent 667ae57 commit 3c23626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/main/java/controller/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public void initialize(URL url, ResourceBundle rb) {
"content",
"path"
);
// Charset utf8 = Charset.forName("UTF-8");
ps = new PrintStream(new Console(console), true);
} catch (Exception e) {
e.printStackTrace();
Expand All @@ -86,6 +85,7 @@ protected Void call() throws Exception {
indexLabel.setText("indexing, please wait.");
});
task.setOnSucceeded(event -> {
tabPanel.getSelectionModel().select(0);
indexLabel.setText("index finished!");
});
new Thread(task).start();
Expand Down

0 comments on commit 3c23626

Please sign in to comment.