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

Commit 21698c57 authored by Alex Chau's avatar Alex Chau
Browse files

Always let Hotseat touches follow through to Workspace if not intercepted

Fix: 200812841
Fix: 201306660
Test: Long press around QSB, hotseat, inbetween hotseat icons works
Test: Can scroll pages on top of hotseat and QSB
Test: Drag and drop still works in hotseat
Test: Can still press and long press on QSB
Change-Id: I3f6807be08ff2c55644e3bf8f6d05a3954a8ede6
parent 494bd4e8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -151,7 +151,8 @@ public class Hotseat extends CellLayout implements Insettable {
            }
            return mWorkspace.onTouchEvent(event);
        }
        return event.getY() > getCellHeight();
        // Always let touch follow through to Workspace.
        return false;
    }

    @Override