fix: Multi-screen launcher display anomaly#699
Merged
Conversation
BLumia
reviewed
Feb 2, 2026
Comment on lines
+68
to
+87
| auto screenByName = [](const QString &name) -> QScreen * { | ||
| if (name.isEmpty()) | ||
| return nullptr; | ||
| for (QScreen *s : qApp->screens()) { | ||
| if (s && s->name() == name) | ||
| return s; | ||
| } | ||
| return nullptr; | ||
| }; | ||
| QString requestedScreenName = LauncherController::instance().currentScreen(); | ||
| QScreen *targetScreen = screenByName(requestedScreenName); | ||
| if (!targetScreen) { | ||
| QRect dockGeometry = DesktopIntegration::instance().dockGeometry(); | ||
| if (dockGeometry.isValid() && dockGeometry.width() > 0 && dockGeometry.height() > 0) | ||
| targetScreen = qApp->screenAt(dockGeometry.center()); | ||
| } | ||
| if (!targetScreen) | ||
| targetScreen = qApp->screenAt(QCursor::pos()); | ||
| if (!targetScreen) | ||
| targetScreen = QGuiApplication::primaryScreen(); |
Member
There was a problem hiding this comment.
看这里写了反复多次检查,看上去意思是之前 LauncherController::instance().currentScreen() 返回的结果可能是个无效的屏幕名称?如果是的话,是不是应该看为什么 LauncherController::instance().currentScreen() 会返回无效的名称?
可以问问 @pengfeixx
log: When retrieving wallpaper, the function GetCurrentWorkspaceBackgroundForMonitor was called using only the main screen or an incorrect screen name instead of the screen where the launcher currently resides. If this fails to return a valid result, the wallpaper won't update. Consequently, the appearance service consistently returns the main screen's wallpaper. pms: bug-343521
deepin pr auto review这段代码修改主要是为了优化屏幕选择逻辑,增强代码的健壮性,并添加了更完善的回退机制。以下是对这段 diff 的详细审查意见: 1. 语法与逻辑审查
2. 代码质量审查
3. 代码性能审查
4. 代码安全审查
5. 改进建议虽然这段代码质量已经很高,但仍有以下微小的优化空间:
总结: |
BLumia
approved these changes
Feb 2, 2026
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: BLumia, JWWTSL 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 |
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.
log: When retrieving wallpaper, the function GetCurrentWorkspaceBackgroundForMonitor was called using only the main screen or an incorrect screen name instead of the screen where the launcher currently resides. If this fails to return a valid result, the wallpaper won't update. Consequently, the appearance service consistently returns the main screen's wallpaper.
pms: bug-343521