Code style fix
Change-Id: I0174293421d866f3b124a9ff4344052749e8a1b9 Reviewed-by: Nie Cheng <niecheng@uniontech.com> Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
This commit is contained in:
parent
1ff82d1eba
commit
e1d7df5ce9
@ -1230,14 +1230,7 @@ void QAbstractScrollArea::contextMenuEvent(QContextMenuEvent *e)
|
||||
void QAbstractScrollArea::keyPressEvent(QKeyEvent * e)
|
||||
{
|
||||
Q_D(QAbstractScrollArea);
|
||||
if (false){
|
||||
#ifndef QT_NO_SHORTCUT
|
||||
} else if (e == QKeySequence::MoveToPreviousPage) {
|
||||
d->vbar->triggerAction(QScrollBar::SliderPageStepSub);
|
||||
} else if (e == QKeySequence::MoveToNextPage) {
|
||||
d->vbar->triggerAction(QScrollBar::SliderPageStepAdd);
|
||||
#endif
|
||||
} else {
|
||||
|
||||
#ifdef QT_KEYPAD_NAVIGATION
|
||||
if (QApplicationPrivate::keypadNavigationEnabled() && !hasEditFocus()) {
|
||||
e->ignore();
|
||||
@ -1281,7 +1274,6 @@ void QAbstractScrollArea::keyPressEvent(QKeyEvent * e)
|
||||
e->ignore();
|
||||
return;
|
||||
}
|
||||
}
|
||||
e->accept();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user