Skip to content

Commit e8c8241

Browse files
committed
fmt
1 parent 4e498aa commit e8c8241

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/capacitor/src/main/java/com/getcapacitor/plugin/SystemBars.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ private void initWindowInsetsListener() {
165165
boolean keyboardVisible = insets.isVisible(WindowInsetsCompat.Type.ime());
166166

167167
if (keyboardVisible) {
168-
safeAreaInsets = Insets.of(safeAreaInsets.left,safeAreaInsets.top, safeAreaInsets.right, 0);
169-
168+
safeAreaInsets = Insets.of(safeAreaInsets.left, safeAreaInsets.top, safeAreaInsets.right, 0);
169+
170170
Insets imeInsets = insets.getInsets(WindowInsetsCompat.Type.ime());
171171
setViewMargins(v, Insets.of(0, 0, 0, imeInsets.bottom));
172172
} else {

0 commit comments

Comments
 (0)