Fixed Encode Normal Morse Error

This commit is contained in:
mmk2410 2015-02-17 03:10:39 +01:00
parent 769b0edc4e
commit ad74229132
1 changed files with 1 additions and 1 deletions

View File

@ -1008,7 +1008,7 @@ public class Morse extends JFrame {
while (signFull) {
if (inputToSign.toString().startsWith(" ")) {
output.append(" ");
inputToSign.delete(d, d + 9);
inputToSign.delete(d, d + 7);
} else if (inputToSign.toString().substring(d, d + 3)
.equals(" ")) {
if (d == 0) {