summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ash/accelerators/accelerator_commands.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/ash/accelerators/accelerator_commands.cc b/ash/accelerators/accelerator_commands.cc
index 1cb326d..73f1b1a 100644
--- a/ash/accelerators/accelerator_commands.cc
+++ b/ash/accelerators/accelerator_commands.cc
@@ -23,10 +23,7 @@ bool ToggleMinimized() {
return true;
}
wm::WindowState* window_state = wm::GetWindowState(window);
- // Disable the shortcut for minimizing full screen window due to
- // crbug.com/131709, which is a crashing issue related to minimizing
- // full screen pepper window.
- if (window_state->IsFullscreen() || !window_state->CanMinimize())
+ if (!window_state->CanMinimize())
return false;
ash::Shell::GetInstance()->delegate()->RecordUserMetricsAction(
ash::UMA_MINIMIZE_PER_KEY);