Index: ash/wm/frame_painter.cc |
diff --git a/ash/wm/frame_painter.cc b/ash/wm/frame_painter.cc |
index a162b5d28d5837433eadeeeddfade60e89fa4094..7fe41ecbe89ed015da31efd673b343af74a41f4b 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 |