From ef868ee2b0924dd58eefc33b46169108d2b25096 Mon Sep 17 00:00:00 2001 From: mbirth Date: Wed, 8 Dec 2004 10:21:28 +0000 Subject: [PATCH] modified JFastReader.java * Bugfix: "Text end." was shown when reading was paused --- JFastReader.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/JFastReader.java b/JFastReader.java index 51f91c6..4a57f42 100644 --- a/JFastReader.java +++ b/JFastReader.java @@ -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());