getWylie now takes a parameter for error detection; I'm not detecting errors
here though.
This commit is contained in:
parent
a48ec641d5
commit
0d1999d055
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ public class DuffScannerPanel extends ScannerPanel
|
|||
|
||||
in = "";
|
||||
if (showingTibetan)
|
||||
in = duffInput.getWylie();
|
||||
in = duffInput.getWylie(new boolean[] { false });
|
||||
else
|
||||
in = txtInput.getText();
|
||||
|
||||
|
@ -197,7 +197,7 @@ public class DuffScannerPanel extends ScannerPanel
|
|||
}
|
||||
if (enabled && showingTibetan)
|
||||
{
|
||||
txtInput.setText(duffInput.getWylie());
|
||||
txtInput.setText(duffInput.getWylie(new boolean[] { false }));
|
||||
table.activateTibetan(false);
|
||||
cl.last(inputPanel);
|
||||
showingTibetan = false;
|
||||
|
|
Loading…
Reference in a new issue