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

Commit c8290611 authored by David Thames's avatar David Thames Committed by Android (Google) Code Review
Browse files

Merge "Migrate sysui swipe event logging flag to bugfix" into main

parents 6c6c1182 95ff504c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -748,10 +748,13 @@ flag {
}

flag {
    name: "smartspace_swipe_event_logging"
    name: "smartspace_swipe_event_logging_fix"
    namespace: "systemui"
    description: "Log card swipe events in smartspace"
    bug: "374150422"
    metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

package com.android.systemui.smartspace.config

import com.android.systemui.Flags.smartspaceSwipeEventLogging
import com.android.systemui.Flags.smartspaceSwipeEventLoggingFix
import com.android.systemui.Flags.smartspaceViewpager2
import com.android.systemui.flags.FeatureFlags
import com.android.systemui.plugins.BcSmartspaceConfigPlugin
@@ -30,5 +30,5 @@ class BcSmartspaceConfigProvider(private val featureFlags: FeatureFlags) :
        get() = smartspaceViewpager2()

    override val isSwipeEventLoggingEnabled: Boolean
        get() = smartspaceSwipeEventLogging()
        get() = smartspaceSwipeEventLoggingFix()
}