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

Commit b349bcf5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixes bad merge in Assistant Handle logic" into qt-dev

parents 0ebf0252 24ca1bb1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -243,12 +243,12 @@ public final class AssistHandleBehaviorController implements AssistHandleCallbac
            return;
        }

        mHandlesShowing = false;
        mHandlesLastHiddenAt = SystemClock.elapsedRealtime();
        ScreenDecorations screenDecorations = mScreenDecorationsSupplier.get();
        if (screenDecorations == null) {
            Log.w(TAG, "Couldn't hide handles, ScreenDecorations unavailable");
        } else {
            mHandlesShowing = false;
            mHandlesLastHiddenAt = SystemClock.elapsedRealtime();
            screenDecorations.setAssistHintVisible(false);
        }
    }