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

Commit 593b4cbb authored by Vishnu Nair's avatar Vishnu Nair
Browse files

[sf] make enable_layer_lifecycle_manager sysprop persistent

Test: confirm sysprop survives reboot
Bug: 238781169
Change-Id: I0e9a146b1ce6eb4a74f1903f534c94faddc0a387
parent 520797d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -473,7 +473,7 @@ SurfaceFlinger::SurfaceFlinger(Factory& factory) : SurfaceFlinger(factory, SkipI
            {.late = base::GetBoolProperty("debug.sf.send_late_power_session_hint"s, true),
             .early = base::GetBoolProperty("debug.sf.send_early_power_session_hint"s, false)};
    mLayerLifecycleManagerEnabled =
            base::GetBoolProperty("debug.sf.enable_layer_lifecycle_manager"s, false);
            base::GetBoolProperty("persist.debug.sf.enable_layer_lifecycle_manager"s, false);
    mLegacyFrontEndEnabled = !mLayerLifecycleManagerEnabled ||
            base::GetBoolProperty("debug.sf.enable_legacy_frontend"s, true);
}