Skip to content

sync: from linuxdeepin/dde-session-shell - #540

Open
deepin-ci-robot wants to merge 1 commit into
masterfrom
sync-pr-91-nosync
Open

deepin-ci-robot wants to merge 1 commit into
masterfrom
sync-pr-91-nosync

Conversation

@deepin-ci-robot

@deepin-ci-robot deepin-ci-robot commented Sep 14, 2026

Copy link
Copy Markdown
Contributor

Synchronize source files from linuxdeepin/dde-session-shell.

Source-pull-request: linuxdeepin/dde-session-shell#91

Summary by Sourcery

Bug Fixes:

  • Ensure the security-key prompt displays as a single, non-wrapped line without eliding its text.

Synchronize source files from linuxdeepin/dde-session-shell.

Source-pull-request: linuxdeepin/dde-session-shell#91
@deepin-ci-robot

Copy link
Copy Markdown
Contributor Author

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: deepin-ci-robot

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@sourcery-ai

sourcery-ai Bot commented Sep 14, 2026

Copy link
Copy Markdown
Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Synchronizes the passkey authentication UI with the upstream source by configuring the security-key prompt as a non-wrapping, non-elided label.

File-Level Changes

Change Details Files
Adjust the security-key prompt label to preserve its full single-line text.
  • Disable word wrapping for the prompt label.
  • Disable text elision so the message is not shortened with an ellipsis.
src/session-widgets/auth_passkey.cpp

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've found 1 issue

Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location path="src/session-widgets/auth_passkey.cpp" line_range="40-41" />
<code_context>
     /* 文案提示 */
     m_textLabel->setText(tr("Please plug in the security key"));
-    m_textLabel->setWordWrap(true);
+    m_textLabel->setWordWrap(false);
+    m_textLabel->setElideMode(Qt::ElideNone);

     /* 旋转提示和文案提示布局 */
</code_context>
<issue_to_address>
**issue (bug_risk):** When the localized prompt or an authentication result is wider than the available 280-pixel passkey widget, disabling wrapping while using `Qt::ElideNone` causes the label to clip the text rather than display it completely. The fixed margins, spinner, and authentication-state label leave less width than the label's natural size.

**Triggers:** When a long translation or backend-provided authentication result is shown.

**Suggested fix:** Give the label enough layout space or use a non-wrapping presentation that preserves the full text, such as horizontal scrolling or an appropriate tooltip, instead of allowing it to be clipped.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨

Comment on lines +40 to +41
m_textLabel->setWordWrap(false);
m_textLabel->setElideMode(Qt::ElideNone);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): When the localized prompt or an authentication result is wider than the available 280-pixel passkey widget, disabling wrapping while using Qt::ElideNone causes the label to clip the text rather than display it completely. The fixed margins, spinner, and authentication-state label leave less width than the label's natural size.

Triggers: When a long translation or backend-provided authentication result is shown.

Suggested fix: Give the label enough layout space or use a non-wrapping presentation that preserves the full text, such as horizontal scrolling or an appropriate tooltip, instead of allowing it to be clipped.

@deepin-ci-robot

Copy link
Copy Markdown
Contributor Author

deepin pr auto review

🤖 AI 代码审查报告

总体评分: 100 分 (通过阈值: 70分)

Pass


📊 总体评价

项目 结果
审查结论 代码审查通过
评分详情 本次变更为UI文本标签显示行为的调整,修改量极小,语法正确,逻辑清晰,无安全漏洞,无性能问题。OCR审查同样未发现问题。

🔍 详细分析

1. 语法逻辑 ✅

评价: 优秀 ✅ 通过

潜在问题:
✅ 未发现明显问题

建议: []


2. 代码质量 ✅

评价: 优秀 ✅ 通过

潜在问题:
✅ 未发现明显问题

建议: []


3. 代码性能 ✅

评价: 优秀 ✅ 通过

潜在问题:
✅ 未发现明显问题

建议: []


4. 代码安全 🔒

评价: 优秀 ✅ 通过

🔐 发现 0 个安全漏洞

安全漏洞详情:
✅ 未发现安全漏洞

建议: []


💡 改进建议代码示例

无需修改,代码实现正确。


本报告由 AI 代码审查工具自动生成

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant