fix: disable the popup menu when show password mode#505
Merged
deepin-bot[bot] merged 1 commit intolinuxdeepin:masterfrom Feb 27, 2026
Merged
fix: disable the popup menu when show password mode#505deepin-bot[bot] merged 1 commit intolinuxdeepin:masterfrom
deepin-bot[bot] merged 1 commit intolinuxdeepin:masterfrom
Conversation
disable the popup menu when show password mode PMS: BUG-351233
deepin pr auto review针对这段 1. 语法逻辑
2. 代码质量
3. 代码性能
4. 代码安全
综合改进建议为了提高代码的健壮性并增强安全性,建议进行如下修改:
优化后的代码示例: TextField {
id: passwordInput // 添加 ID
// ... 其他属性保持不变 ...
// 在显示明文时禁用右键菜单和复制快捷键
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.RightButton
// 使用 id 引用,更加安全
enabled: passwordInput.echoMode === TextInput.Password
}
// 增强安全性:在明文模式下拦截复制快捷键
Keys.onPressed: function(event) {
if (passwordInput.echoMode === TextInput.Normal) {
// 检测是否是复制相关的组合键 (Ctrl+C, Ctrl+Insert)
if ((event.key === Qt.Key_C || event.key === Qt.Key_Insert) && (event.modifiers & Qt.ControlModifier)) {
event.accepted = true; // 接受事件,阻止默认的复制行为
}
}
}
}总结: |
caixr23
approved these changes
Feb 27, 2026
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: caixr23, ut003640 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 |
Contributor
Author
|
/merge |
Contributor
|
This pr cannot be merged! (status: unstable) |
Contributor
Author
|
/forcemerge |
Contributor
|
This pr force merged! (status: unstable) |
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.
disable the popup menu when show password mode
PMS: BUG-351233