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

Commit 419fe693 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Brightness mirror - fix multi-touch issue" am: 1bfab3de am: 44857962 am: 3212624a

am: a2ecf784

Change-Id: I8f9feab09979f78a79a24e106f2094349ab300d4
parents 6df61b65 a2ecf784
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -165,6 +165,14 @@ public class StatusBarWindowView extends FrameLayout {
        mBrightnessMirror = findViewById(R.id.brightness_mirror);
    }

    @Override
    public void onViewAdded(View child) {
        super.onViewAdded(child);
        if (child.getId() == R.id.brightness_mirror) {
            mBrightnessMirror = child;
        }
    }

    public void setService(PhoneStatusBar service) {
        mService = service;
        mDragDownHelper = new DragDownHelper(getContext(), this, mStackScrollLayout, mService);