Disable long press to open context menu

Interferes with drag-scrolling for HTileDelegate
This commit is contained in:
miruka 2019-09-02 13:29:05 -04:00
parent 6b18ac6d26
commit 970b0c82d3
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@
- When qml syntax highlighting supports ES6 string interpolation, use them - When qml syntax highlighting supports ES6 string interpolation, use them
- Fixes - Fixes
- `minutesBetween()` for 13:13:58 and 14:15:07
- `# > quote` doesn't color - `# > quote` doesn't color
- Pressing backspace in composer sometimes doesn't work - Pressing backspace in composer sometimes doesn't work
- Message order isn't preserved when sending a first message in a E2E - Message order isn't preserved when sending a first message in a E2E
@ -30,6 +31,7 @@
- Set an explicit placeholder text color for text field/area - Set an explicit placeholder text color for text field/area
- Change typing bar background - Change typing bar background
- Show error if uploading avatar fails or file is corrupted - Show error if uploading avatar fails or file is corrupted
- Way to open context menus without a right mouse button
- Single message context menu - Single message context menu
- Copy text - Copy text

View File

@ -104,6 +104,6 @@ HButton {
TapHandler { TapHandler {
acceptedButtons: Qt.LeftButton | Qt.RightButton acceptedButtons: Qt.LeftButton | Qt.RightButton
onLongPressed: if (contextMenu.count > 0) contextMenu.popup() // onLongPressed: if (contextMenu.count > 0) contextMenu.popup()
} }
} }