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

Unified Diff: athena/wm/split_view_controller.cc

Issue 546123002: Ensure that an activity is activated when overview mode is exited (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: athena/wm/split_view_controller.cc
diff --git a/athena/wm/split_view_controller.cc b/athena/wm/split_view_controller.cc
index 85db209536916f46ec72f8d59b586abf056f9e4e..ada8cb4f168bbd0ab5aae8e717854d9d1a513e29 100644
--- a/athena/wm/split_view_controller.cc
+++ b/athena/wm/split_view_controller.cc
@@ -173,7 +173,9 @@ void SplitViewController::UpdateLayout(bool animate) {
return;
}
+ left_window_->layer()->SetOpacity(1.0f);
left_window_->Show();
+ right_window_->layer()->SetOpacity(1.0f);
right_window_->Show();
if (state_ == ACTIVE) {
if (animate) {

Powered by Google App Engine
This is Rietveld 408576698