Unset minimized when recents dies

Bug: 151181674
Test: builds and tests pass
Change-Id: I8a3e2d100fdd3f83c210c75e19d7dc0724d55bcd
This commit is contained in:
Winson Chung
2020-03-18 11:19:29 -07:00
committed by Evan Rosky
parent b42dfe722c
commit 39e48befe6

View File

@@ -670,6 +670,12 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
});
}
startConnectionToCurrentUser();
// Clean up the minimized state if launcher dies
Divider divider = mDividerOptional.get();
if (divider != null) {
divider.setMinimized(false);
}
}
public void startConnectionToCurrentUser() {