Commit 8c7ca2d9 authored by Berthold Krevert's avatar Berthold Krevert Committed by The Qt Project
Browse files

Fix selection handling in texteditor example


Task-number: QTBUG-31784
Change-Id: I7122abbfd346edd85f17c54dfde37db93a1ba0fc
Reviewed-by: default avatarCaroline Chao <caroline.chao@digia.com>
Reviewed-by: default avatarMitch Curtis <mitch.curtis@digia.com>
Showing with 12 additions and 5 deletions
......@@ -272,16 +272,19 @@ ApplicationWindow {
implicitWidth: 150
model: Qt.fontFamilies()
property bool special : false
onCurrentTextChanged: {
if (special == false || currentIndex != 0)
document.fontFamily = currentText
onActivated: {
if (special == false || index != 0) {
document.fontFamily = textAt(index)
}
}
}
SpinBox {
id: fontSizeSpinBox
activeFocusOnPress: false
implicitWidth: 50
value: 0
onValueChanged: document.fontSize = value
property bool valueGuard: true
onValueChanged: if (valueGuard) document.fontSize = value
}
Item { Layout.fillWidth: true }
}
......@@ -307,7 +310,11 @@ ApplicationWindow {
selectionStart: textArea.selectionStart
selectionEnd: textArea.selectionEnd
Component.onCompleted: document.fileUrl = "qrc:/example.html"
onFontSizeChanged: fontSizeSpinBox.value = document.fontSize
onFontSizeChanged: {
fontSizeSpinBox.valueGuard = false
fontSizeSpinBox.value = document.fontSize
fontSizeSpinBox.valueGuard = true
}
onFontFamilyChanged: {
var index = Qt.fontFamilies().indexOf(document.fontFamily)
if (index == -1) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment