diff options
| author | 2014-08-21 05:53:50 +0000 | |
|---|---|---|
| committer | 2014-08-21 05:53:51 +0000 | |
| commit | f860be88a9c8fca910f2d97694d102f627d06c71 (patch) | |
| tree | 29acdde754a2c5797d6eb2b49d1c5fa8e03452b7 | |
| parent | 6800cddd6f5b3c4699ab8cab3aec85e4f9e01a83 (diff) | |
| parent | 2626958c4b5a284abb0a342933d79135e0b9d8d0 (diff) | |
Merge "CEC: Fix a bug not sending <Set Stream Path>" into lmp-dev
| -rw-r--r-- | services/core/java/com/android/server/hdmi/HdmiCecLocalDeviceTv.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/hdmi/HdmiCecLocalDeviceTv.java b/services/core/java/com/android/server/hdmi/HdmiCecLocalDeviceTv.java index 73f5cfd028ce..a23194537f35 100644 --- a/services/core/java/com/android/server/hdmi/HdmiCecLocalDeviceTv.java +++ b/services/core/java/com/android/server/hdmi/HdmiCecLocalDeviceTv.java @@ -314,7 +314,7 @@ final class HdmiCecLocalDeviceTv extends HdmiCecLocalDevice { HdmiCecMessageBuilder.buildRoutingChange(mAddress, oldPath, newPath); mService.sendCecCommand(routingChange); removeAction(RoutingControlAction.class); - addAndStartAction(new RoutingControlAction(this, newPath, false, callback)); + addAndStartAction(new RoutingControlAction(this, newPath, true, callback)); } int getPowerStatus() { |