fix: Fix the touch screen vertical swipe dragging issue#255
Closed
pengfeixx wants to merge 1 commit into
Closed
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pengfeixx The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
18202781743
reviewed
Mar 12, 2026
| if (m_mimeData) { | ||
| QDrag *drag = new QDrag(this); | ||
| QMimeData *mimeData = m_mimeData; | ||
| m_mimeData = nullptr; |
| QDrag *drag = new QDrag(this); | ||
| drag->setMimeData(m_mimeData); | ||
| drag->exec(Qt::CopyAction); | ||
| if (m_mousePressed) { |
Contributor
There was a problem hiding this comment.
必须要加m_pressSource这个标识么?看你这个逻辑,只有在m_mousePressed 处理,跟之前的本身就不一样了,能不能不加这种,看着像是ai针对这个bug修复的一样,
Contributor
|
TAG Bot New tag: 6.1.24 |
Contributor
|
TAG Bot New tag: 6.1.25 |
Fix the touch screen vertical swipe dragging issue Log: Fix the touch screen vertical swipe dragging issue pms: BUG-351197
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix the touch screen vertical swipe dragging issue
Log: Fix the touch screen vertical swipe dragging issue
pms: BUG-351197