Remove quadruple click message selection
A tripple click is too easily detected as a quadruple when the user actually did a triple.
This commit is contained in:
@@ -92,8 +92,12 @@ Row {
|
||||
// horizontalAlignment: onRight ? Text.AlignRight : Text.AlignLeft
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
|
||||
function selectAllTextPlus() {
|
||||
contentLabel.selectAllTextPlus()
|
||||
function selectAllText() {
|
||||
// select the sender name, body and date
|
||||
container.clearSelection()
|
||||
nameLabel.selectAll()
|
||||
contentLabel.selectAll()
|
||||
contentLabel.updateContainerSelectedTexts()
|
||||
}
|
||||
|
||||
HoverHandler { id: nameHover }
|
||||
@@ -139,14 +143,6 @@ Row {
|
||||
contentLabel.updateContainerSelectedTexts()
|
||||
}
|
||||
|
||||
function selectAllTextPlus() {
|
||||
// select the sender name, body and date
|
||||
container.clearSelection()
|
||||
nameLabel.selectAll()
|
||||
contentLabel.selectAll()
|
||||
contentLabel.updateContainerSelectedTexts()
|
||||
}
|
||||
|
||||
HoverHandler { id: contentHover }
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user