Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(592)

Unified Diff: ash/wm/default_state.cc

Issue 424463002: Makes a window that has been resized to maximized bounds, then maximized and then restored shrink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Maximizes a window that has been resized to maximized bounds (nits, restricts to tabbed browsers) Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ash/wm/window_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/default_state.cc
diff --git a/ash/wm/default_state.cc b/ash/wm/default_state.cc
index 0fd3070dcfcb39ec6b4d369c4619ff16ecc87f1e..14633efa3e7dadd6ead51027bf000a072a9609cf 100644
--- a/ash/wm/default_state.cc
+++ b/ash/wm/default_state.cc
@@ -511,10 +511,22 @@ void DefaultState::UpdateBoundsFromState(WindowState* window_state,
case WINDOW_STATE_TYPE_NORMAL: {
gfx::Rect work_area_in_parent =
ScreenUtil::GetDisplayWorkAreaBoundsInParent(window_state->window());
- if (window_state->HasRestoreBounds())
+ if (window_state->HasRestoreBounds()) {
bounds_in_parent = window_state->GetRestoreBoundsInParent();
- else
+ // Check if the |window|'s restored size is bigger than the working area
+ // This may happen if a window was resized to maximized bounds or if the
+ // display resolution changed while the window was maximized.
+ if (previous_state_type == WINDOW_STATE_TYPE_MAXIMIZED &&
+ bounds_in_parent.width() >= work_area_in_parent.width() &&
+ bounds_in_parent.height() >= work_area_in_parent.height()) {
+ // Inset the bounds slightly so that they are not exactly same as
+ // the work area bounds and it is easier to resize the window.
+ bounds_in_parent = work_area_in_parent;
+ bounds_in_parent.Inset(10, 10, 10, 10);
+ }
+ } else {
bounds_in_parent = window->bounds();
+ }
// Make sure that part of the window is always visible.
AdjustBoundsToEnsureMinimumWindowVisibility(
work_area_in_parent, &bounds_in_parent);
« no previous file with comments | « no previous file | ash/wm/window_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698