| Index: ui/display/chromeos/display_configurator.cc
|
| diff --git a/ui/display/chromeos/display_configurator.cc b/ui/display/chromeos/display_configurator.cc
|
| index bd125439f4959a106d639c07e3ee39c19995c265..4da22efa29a18a196aa8fa5ce83762b0b0b282d6 100644
|
| --- a/ui/display/chromeos/display_configurator.cc
|
| +++ b/ui/display/chromeos/display_configurator.cc
|
| @@ -296,10 +296,8 @@ bool DisplayConfigurator::DisplayLayoutManagerImpl::GetDisplayLayout(
|
| }
|
| case MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED:
|
| case MULTIPLE_DISPLAY_STATE_MULTI_EXTENDED: {
|
| - if ((new_display_state == MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED &&
|
| - states.size() != 2 && num_on_displays != 2) ||
|
| - (new_display_state == MULTIPLE_DISPLAY_STATE_MULTI_EXTENDED &&
|
| - num_on_displays <= 2)) {
|
| + if (new_display_state == MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED &&
|
| + states.size() != 2 && num_on_displays != 2) {
|
| LOG(WARNING) << "Ignoring request to enter extended mode with "
|
| << states.size() << " connected display(s) and "
|
| << num_on_displays << " turned on";
|
|
|