diff options
-rw-r--r-- | ash/wm/frame_painter.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ash/wm/frame_painter.cc b/ash/wm/frame_painter.cc index a162b5d..7fe41ec 100644 --- a/ash/wm/frame_painter.cc +++ b/ash/wm/frame_painter.cc @@ -119,7 +119,8 @@ bool IsVisibleNormalWindow(aura::Window* window) { // IsVisible() also tracks the layer visibility state. return window && window->TargetVisibility() && - window->type() == aura::client::WINDOW_TYPE_NORMAL; + (window->type() == aura::client::WINDOW_TYPE_NORMAL || + window->type() == aura::client::WINDOW_TYPE_PANEL); } } // namespace |