fix: when fullscreen, click dock, launchpad will not close.#587
Merged
Conversation
Reviewer's GuideThis PR introduces a DdeDock helper to listen for dockClicked DBus signals and integrates it into LauncherController to automatically hide the launcher when the dock is clicked, addressing the fullscreen case. Sequence diagram for hiding launcher on dock clicksequenceDiagram
participant User as actor User
participant Dock as DdeDock
participant Launcher as LauncherController
User->>Dock: Clicks on dock
Dock->>Dock: Receives dockClicked DBus signal
Dock-->>Launcher: Emits dockClicked signal
Launcher->>Launcher: setVisible(false) (if visible)
Launcher-->>User: Launcher hides
Class diagram for DdeDock and LauncherController integrationclassDiagram
class DdeDock {
+dockClicked()
-updateDockRectAndPositionFromDBus()
}
class LauncherController {
-m_dockIntegration : DdeDock*
+LauncherController(QObject*)
+setVisible(bool)
+visible() : bool
}
DdeDock <.. LauncherController : uses
DdeDock : +signal dockClicked()
LauncherController : +slot (lambda) on dockClicked
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
18202781743
reviewed
Jun 24, 2025
Contributor
18202781743
reviewed
Jun 24, 2025
wjyrich
force-pushed
the
312863
branch
2 times, most recently
from
June 24, 2025 09:17
af1d928 to
32679b2
Compare
as title. Logs:
deepin pr auto review关键摘要:
是否建议立即修改:
|
18202781743
approved these changes
Jun 24, 2025
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: 18202781743, wjyrich 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
|
/forcemerge |
|
This pr force merged! (status: behind) |
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.
as title.
Logs:
Summary by Sourcery
Integrate DdeDock to listen for dock click events and automatically hide the launcher when the dock is clicked in fullscreen mode.
Bug Fixes:
Enhancements: