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

Commit d3635079 authored by Michael W's avatar Michael W Committed by Michael Bestas
Browse files

Dialer: Fix some weird inset behavior

* When calling someone and hanging up, a bottom popup appears -
  and with edge-to-edge it currently is way up with 3-button-nav
* Returning CONSUMED fixes this

Change-Id: Ia53702aa4df13e96cdb1acf5cd7e645efbe5025a
parent 118e485a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ public class BaseActivity extends AppCompatActivity {
                view.getPaddingRight(),
                systemInsets.bottom
            );
            return insets;
            return WindowInsetsCompat.CONSUMED;
        });
    }
}