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

Commit 5c42df13 authored by Adrian Roos's avatar Adrian Roos
Browse files

Flipping the bit on the HIC

Bug: 25186740
Change-Id: If1931cb1672ac9fcd588b621ce802200571cff8e
parent ebefdd3f
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -35,6 +35,10 @@ import java.util.ArrayList;
public class HumanInteractionClassifier extends Classifier {
    private static final String HIC_ENABLE = "HIC_enable";
    private static final float FINGER_DISTANCE = 0.1f;

    /** Default value for the HIC_ENABLE setting: 1 - enabled, 0 - disabled */
    private static final int HIC_ENABLE_DEFAULT = 1;

    private static HumanInteractionClassifier sInstance = null;

    private final Handler mHandler = new Handler();
@@ -101,9 +105,9 @@ public class HumanInteractionClassifier extends Classifier {
    }

    private void updateConfiguration() {
        mEnableClassifier = Build.IS_DEBUGGABLE && 0 != Settings.Global.getInt(
        mEnableClassifier = 0 != Settings.Global.getInt(
                mContext.getContentResolver(),
                HIC_ENABLE, 0);
                HIC_ENABLE, HIC_ENABLE_DEFAULT);
    }

    public void setType(int type) {