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

Unverified Commit 2098a2de authored by Rafael Tonholo's avatar Rafael Tonholo Committed by GitHub
Browse files

Merge pull request #9372 from joohnq/fix-issue-9338

fix: Download Complete message was covered by navigation bar
parents 80dd25bc 5faed732
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ open class MessageList :

        ViewCompat.setOnApplyWindowInsetsListener(container) { v, windowsInsets ->
            val insets = windowsInsets.getInsets(displayCutout() or navigationBars())
            v.setPadding(insets.left, 0, insets.right, 0)
            v.setPadding(insets.left, 0, insets.right, insets.bottom)

            windowsInsets
        }