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

Commit 95ff504c authored by davidct's avatar davidct
Browse files

Migrate sysui swipe event logging flag to bugfix

Bug: 374150422
Flag: com.android.systemui.smartspace_swipe_event_logging
Test: tested manually
Change-Id: I1f4d579eb1f184db2b71e3cedb463768bc0894e0
parent 3621c70c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -740,10 +740,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()
}