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

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

Merge "Revert "More logging for drop bar not appearing for dragged widget"" into sc-v2-dev

parents 5ec8046f a666b8f5
Loading
Loading
Loading
Loading
+2 −14
Original line number Diff line number Diff line
@@ -275,20 +275,8 @@ public class DropTargetBar extends FrameLayout
    @Override
    protected void onVisibilityChanged(@NonNull View changedView, int visibility) {
        super.onVisibilityChanged(changedView, visibility);
        if (TestProtocol.sDebugTracing) {
            if (visibility == VISIBLE) {
        if (TestProtocol.sDebugTracing && visibility == VISIBLE) {
            Log.d(TestProtocol.NO_DROP_TARGET, "9");
            } else {
                Log.d(TestProtocol.NO_DROP_TARGET, "Hiding drop target", new Exception());
            }
        }
    }

    @Override
    public void onVisibilityAggregated(boolean isVisible) {
        super.onVisibilityAggregated(isVisible);
        if (TestProtocol.sDebugTracing) {
            Log.d(TestProtocol.NO_DROP_TARGET, "onVisibilityAggregated: " + isVisible);
        }
    }
}