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

Commit 1c9fe91b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Allow scrolling in landscape" into rvc-dev am: acf1151d am:...

Merge "Allow scrolling in landscape" into rvc-dev am: acf1151d am: 7a640e94 am: 7d5cb262 am: 97cb9949

Change-Id: I7f91c0cbe6d677021929d8db4d4a36e1f6f4a7ca
parents 439e6c7f 97cb9949
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -777,6 +777,10 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
        }
    }

    boolean inLandscape() {
        return mOrientation == Configuration.ORIENTATION_LANDSCAPE;
    }

    /**
     * Set a listener to be notified of bubble expand events.
     */
+3 −0
Original line number Diff line number Diff line
@@ -70,6 +70,9 @@ public class BubbleOverflowActivity extends Activity {
        }
        @Override
        public boolean canScrollVertically() {
            if (mBubbleController.inLandscape()) {
                return super.canScrollVertically();
            }
            return false;
        }
    }