Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 244abe21 authored by Hyunyoung Song's avatar Hyunyoung Song
Browse files

Add two more enums to LauncherState

Test: system image builds
Bug: 137777105

Change-Id: Ie383809b8d38dbaed8fd99e46a0cc712b1d202d7
parent 5bef1eb6
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -32,10 +32,12 @@ enum LauncherAction {
}

enum LauncherState {
    BACKGROUND = 0;
    HOME = 1;
    OVERVIEW = 2;
    ALLAPPS = 3;
    LAUNCHER_STATE_UNSPECIFIED = 0;
    BACKGROUND = 1;
    HOME = 2;
    OVERVIEW = 3;
    ALLAPPS = 4;
    UNCHANGED = 5;
}

message LauncherTarget {