Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af20b8d5 authored by Tomasz Mikolajewski's avatar Tomasz Mikolajewski
Browse files

Fix freeform window resizing.

Freeform resizing would not result in DRAG_RESIZE_MODE_FREEFORM
set, and as a result would not kick in the backdrop frame renderer.

Bug: None
Test: Backdrop renderer kicks in.
Change-Id: If962ac152186944d9643343441cf5523b832cbe8
parent 0afe0849
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3071,7 +3071,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
        if (task == null) {
            return false;
        }
        if (!inSplitScreenWindowingMode()) {
        if (!inSplitScreenWindowingMode() && !inFreeformWindowingMode()) {
            return false;
        }
        if (mAttrs.width != MATCH_PARENT || mAttrs.height != MATCH_PARENT) {