Skip to content

Commit

Permalink
[qtmozembed] Remove sending the overlapped by keyboard area height. C…
Browse files Browse the repository at this point in the history
…ontributes to JB#55896
  • Loading branch information
paveltkv committed Oct 12, 2021
1 parent 95ec311 commit 06f6d3a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
7 changes: 0 additions & 7 deletions src/qmozview_p.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1047,13 +1047,6 @@ void QMozViewPrivate::setThrottlePainting(bool aThrottle)
}
}

void QMozViewPrivate::SetVirtualKeyboardHeight(int aHeight)
{
if (mViewInitialized) {
mView->SetVirtualKeyboardHeight(aHeight);
}
}

void QMozViewPrivate::IMENotification(int aIstate, bool aOpen, int aCause, int aFocusChange,
const char16_t *inputType, const char16_t *inputMode)
{
Expand Down
1 change: 0 additions & 1 deletion src/qmozview_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ class QMozViewPrivate : public QObject,
void setIsFocused(bool aIsFocused);
void setDesktopMode(bool aDesktopMode);
void setThrottlePainting(bool aThrottle);
void SetVirtualKeyboardHeight(int aHeight);
void updateScrollArea(unsigned int aWidth, unsigned int aHeight, float aPosX, float aPosY);
void testFlickingMode(QTouchEvent *event);
void handleTouchEnd(bool &draggingChanged, bool &pinchingChanged);
Expand Down
1 change: 0 additions & 1 deletion src/qopenglwebpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ void QOpenGLWebPage::setVirtualKeyboardHeight(int height)
{
if (height != m_virtualKeyboardHeight) {
m_virtualKeyboardHeight = height;
d->SetVirtualKeyboardHeight(height);
Q_EMIT virtualKeyboardHeightChanged();
}
}
Expand Down

0 comments on commit 06f6d3a

Please sign in to comment.