modified JFastReader.java

* Bugfix: "Text end." was shown when reading was paused
This commit is contained in:
mbirth 2004-12-08 10:21:28 +00:00
parent 1ff9582e81
commit ef868ee2b0

View File

@ -482,7 +482,9 @@ public class JFastReader extends Frame implements ActionListener, AdjustmentList
}
}
curWord--;
MIP.infoPrint("Text end.");
if (!this.stopnow) {
MIP.infoPrint("Text end.");
}
return;
} catch (Exception ex) {
System.out.println("Exception in PlayThread: "+ex.toString());