diff --git a/ios/engine/KMEI/KeymanEngine/Classes/Keyboard/InputViewController.swift b/ios/engine/KMEI/KeymanEngine/Classes/Keyboard/InputViewController.swift index 8e539bfe84..172385c6fc 100644 --- a/ios/engine/KMEI/KeymanEngine/Classes/Keyboard/InputViewController.swift +++ b/ios/engine/KMEI/KeymanEngine/Classes/Keyboard/InputViewController.swift @@ -153,7 +153,7 @@ open class InputViewController: UIInputViewController, KeymanWebDelegate { } var expandedHeight: CGFloat { - return keymanWeb.keyboardHeight + activeTopBarHeight + return keymanWeb.keyboardHeight + InputViewController.topBarHeight } public convenience init() { @@ -459,15 +459,6 @@ open class InputViewController: UIInputViewController, KeymanWebDelegate { baseWidthConstraint.isActive = true } - public var isTopBarActive: Bool { - return true - } - - public var activeTopBarHeight: CGFloat { - // If 'isSystemKeyboard' is true, always show the top bar. - return isTopBarActive ? CGFloat(InputViewController.topBarHeight) : 0 - } - public var kmwHeight: CGFloat { return keymanWeb.keyboardHeight }