Added signature location setting

This commit is contained in:
M66B
2020-02-16 13:29:19 +01:00
parent 8fdce42d8f
commit 3e9aa38613
4 changed files with 55 additions and 35 deletions

View File

@@ -236,6 +236,13 @@ public class ApplicationEx extends Application {
editor.putBoolean("move_1_confirmed", automove);
editor.remove("automove");
}
} else if (version < 972) {
if (prefs.contains("signature_end")) {
boolean signature_end = prefs.getBoolean("signature_end", false);
if (signature_end)
editor.putInt("signature_location", 2);
editor.remove("signature_end");
}
}
if (BuildConfig.DEBUG && false) {