Improve code comment clarity

Co-authored-by: adbenitez <24558636+adbenitez@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-02 17:25:51 +00:00
parent c9b6bb15e6
commit ee73ccf6ef
@@ -327,8 +327,7 @@ public class ViewUtil {
Insets systemBars = windowInsets.getInsets(WindowInsetsCompat.Type.systemBars());
Insets displayCutout = windowInsets.getInsets(WindowInsetsCompat.Type.displayCutout());
// We want system bars (status + navigation) and display cutout, but NOT the IME keyboard
// systemBars already contains navigation bar without keyboard, so just use it directly
// Combine systemBars (which excludes IME) with displayCutout using max to handle notches/cutouts
Insets combined = Insets.max(systemBars, displayCutout);
return combined;