Fix QPlainTextEdit when using Qt::TextSelectableByKeyboard flag
It is not possible to select text with keyboard when specifying only Qt::TextSelectableByKeyboard flag. Task-number: QTBUG-18952 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> (cherry picked from commit 054fa68b6ae852e84f2d44a73260b4282286f5ab) Change-Id: I054fa68b6ae852e84f2d44a73260b4282286f5abbb10
parent
61fae7e551
commit
fd3d7429b2
|
|
@ -1918,10 +1918,7 @@ void QTextControlPrivate::focusEvent(QFocusEvent *e)
|
|||
if (!QGuiApplication::keypadNavigationEnabled() || (hasEditFocus && (e->reason() == Qt::PopupFocusReason
|
||||
))) {
|
||||
#endif
|
||||
cursorOn = (interactionFlags & Qt::TextSelectableByKeyboard);
|
||||
if (interactionFlags & Qt::TextEditable) {
|
||||
setBlinkingCursorEnabled(true);
|
||||
}
|
||||
setBlinkingCursorEnabled(interactionFlags & (Qt::TextEditable | Qt::TextSelectableByKeyboard));
|
||||
#ifdef QT_KEYPAD_NAVIGATION
|
||||
}
|
||||
#endif
|
||||
|
|
@ -2586,7 +2583,7 @@ void QTextControl::setTextInteractionFlags(Qt::TextInteractionFlags flags)
|
|||
d->interactionFlags = flags;
|
||||
|
||||
if (d->hasFocus)
|
||||
d->setBlinkingCursorEnabled(flags & Qt::TextEditable);
|
||||
d->setBlinkingCursorEnabled(flags & (Qt::TextEditable | Qt::TextSelectableByKeyboard));
|
||||
}
|
||||
|
||||
Qt::TextInteractionFlags QTextControl::textInteractionFlags() const
|
||||
|
|
|
|||
|
|
@ -1899,7 +1899,7 @@ void QPlainTextEdit::paintEvent(QPaintEvent *e)
|
|||
}
|
||||
}
|
||||
|
||||
bool drawCursor = (editable
|
||||
bool drawCursor = ((editable || (textInteractionFlags() & Qt::TextSelectableByKeyboard))
|
||||
&& context.cursorPosition >= blpos
|
||||
&& context.cursorPosition < blpos + bllen);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue