fixed auto-space after words not working, because of misspelled function name
This commit is contained in:
parent
b497c5afa1
commit
3d8a5b2fc0
2 changed files with 2 additions and 2 deletions
|
|
@ -161,7 +161,7 @@ public class TextField {
|
||||||
|
|
||||||
|
|
||||||
public Text getTextAfterCursor(int numberOfChars) {
|
public Text getTextAfterCursor(int numberOfChars) {
|
||||||
return new Text(getStringBeforeCursor(numberOfChars));
|
return new Text(getStringAfterCursor(numberOfChars));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
package io.github.sspanak.tt9.ime.modes.helpers;
|
package io.github.sspanak.tt9.ime.modes.helpers;
|
||||||
|
|
||||||
import io.github.sspanak.tt9.languages.Text;
|
|
||||||
import io.github.sspanak.tt9.ime.helpers.InputType;
|
import io.github.sspanak.tt9.ime.helpers.InputType;
|
||||||
import io.github.sspanak.tt9.ime.helpers.TextField;
|
import io.github.sspanak.tt9.ime.helpers.TextField;
|
||||||
|
import io.github.sspanak.tt9.languages.Text;
|
||||||
import io.github.sspanak.tt9.preferences.SettingsStore;
|
import io.github.sspanak.tt9.preferences.SettingsStore;
|
||||||
|
|
||||||
public class AutoSpace {
|
public class AutoSpace {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue