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 = "";
|
in = "";
|
||||||
if (showingTibetan)
|
if (showingTibetan)
|
||||||
in = duffInput.getWylie();
|
in = duffInput.getWylie(new boolean[] { false });
|
||||||
else
|
else
|
||||||
in = txtInput.getText();
|
in = txtInput.getText();
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ public class DuffScannerPanel extends ScannerPanel
|
||||||
}
|
}
|
||||||
if (enabled && showingTibetan)
|
if (enabled && showingTibetan)
|
||||||
{
|
{
|
||||||
txtInput.setText(duffInput.getWylie());
|
txtInput.setText(duffInput.getWylie(new boolean[] { false }));
|
||||||
table.activateTibetan(false);
|
table.activateTibetan(false);
|
||||||
cl.last(inputPanel);
|
cl.last(inputPanel);
|
||||||
showingTibetan = false;
|
showingTibetan = false;
|
||||||
|
|
Loading…
Reference in a new issue