Skip to content

Commit cb95996

Browse files
committed
fix: spells
1 parent 31ee990 commit cb95996

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

android/src/main/java/com/reactnativekeyboardcontroller/views/overlay/OverKeyboardViewGroup.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ class OverKeyboardRootViewGroup(
138138
}
139139

140140
override fun onSizeChanged(
141-
w: Int,
142-
h: Int,
143-
oldw: Int,
144-
oldh: Int,
141+
width: Int,
142+
height: Int,
143+
oldWidth: Int,
144+
oldHeight: Int,
145145
) {
146-
super.onSizeChanged(w, h, oldw, oldh)
147-
stretchTo(width = w, height = h)
146+
super.onSizeChanged(width, height, oldWidth, oldHeight)
147+
stretchTo(width, height)
148148
}
149149

150150
// endregion

0 commit comments

Comments
 (0)