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

Commit d53382b0 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Android (Google) Code Review
Browse files

Merge "Add two more enums to LauncherState" into rvc-dev

parents 3258a3e1 244abe21
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 {