| Index: chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
|
| diff --git a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
|
| index 39c12feea213ecbf4972915a409c2d3f9558a999..b45d2881e28e1b581c8b1b80aec8a2108b9b5d5d 100644
|
| --- a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
|
| +++ b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
|
| @@ -55,6 +55,9 @@ gfx::Rect GlassAppWindowFrameViewWin::GetBoundsForClientView() const {
|
|
|
| gfx::Rect GlassAppWindowFrameViewWin::GetWindowBoundsForClientBounds(
|
| const gfx::Rect& client_bounds) const {
|
| + if (widget_->IsFullscreen())
|
| + return bounds();
|
| +
|
| gfx::Insets insets = GetGlassInsets();
|
| // Our bounds are not the same as the window's due to the offset added by
|
| // AppWindowDesktopWindowTreeHostWin::GetClientAreaInsets. So account for it
|
|
|