lineage-sdk: Remove single hand mode enum values

Change-Id: I2865d57d5b6e49391898e8de06889b1a26c54970
This commit is contained in:
LuK1337
2021-05-03 23:56:42 +02:00
committed by Łukasz Patron
parent d1461d3451
commit 122825fa60
2 changed files with 1 additions and 5 deletions

View File

@@ -1058,8 +1058,6 @@ public final class LineageSettings {
* 7 - Action Sleep
* 8 - Last app
* 9 - Toggle split screen
* 10 - Single hand (left)
* 11 - Single hand (right)
*/
public static final String KEY_HOME_LONG_PRESS_ACTION = "key_home_long_press_action";

View File

@@ -35,9 +35,7 @@ public class DeviceKeysConstants {
LAUNCH_CAMERA,
SLEEP,
LAST_APP,
SPLIT_SCREEN,
SINGLE_HAND_LEFT,
SINGLE_HAND_RIGHT;
SPLIT_SCREEN;
public static Action fromIntSafe(int id) {
if (id < NOTHING.ordinal() || id > Action.values().length) {