Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +1 −1 Original line number Diff line number Diff line Loading @@ -229,7 +229,7 @@ public abstract class PanelView extends FrameLayout { } // On expanding, single mouse click expands the panel instead of dragging. if (isFullyCollapsed() && event.getDevice().getSources() == InputDevice.SOURCE_MOUSE) { if (isFullyCollapsed() && event.isFromSource(InputDevice.SOURCE_MOUSE)) { if (event.getAction() == MotionEvent.ACTION_UP) { expand(true); } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +1 −1 Original line number Diff line number Diff line Loading @@ -229,7 +229,7 @@ public abstract class PanelView extends FrameLayout { } // On expanding, single mouse click expands the panel instead of dragging. if (isFullyCollapsed() && event.getDevice().getSources() == InputDevice.SOURCE_MOUSE) { if (isFullyCollapsed() && event.isFromSource(InputDevice.SOURCE_MOUSE)) { if (event.getAction() == MotionEvent.ACTION_UP) { expand(true); } Loading