mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 00:06:47 +00:00
Merge "Disable blurs while in multiwindow mode" into ub-launcher3-rvc-dev
This commit is contained in:
@@ -285,7 +285,14 @@ public abstract class LauncherState {
|
||||
*
|
||||
* 0 means completely zoomed in, without blurs. 1 is zoomed out, with blurs.
|
||||
*/
|
||||
public float getDepth(Context context) {
|
||||
public final float getDepth(Context context) {
|
||||
if (BaseDraggingActivity.fromContext(context).getDeviceProfile().isMultiWindowMode) {
|
||||
return 0;
|
||||
}
|
||||
return getDepthUnchecked(context);
|
||||
}
|
||||
|
||||
protected float getDepthUnchecked(Context context) {
|
||||
return 0f;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user