-
Notifications
You must be signed in to change notification settings - Fork 39
fix: The album content classification menu is not fully displayed #377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
log: Removed the error dialog box, restoring the control to its default framework behavior. bug: 622f100
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR removes a custom popup implementation from the FilterComboBox QML control so that it falls back to the default ComboBox framework popup behavior, addressing an issue where the album content classification menu was not fully displayed. Class diagram for FilterComboBox popup behavior changeclassDiagram
class ComboBox
class FilterComboBox
class Popup
class ArrowListView
class FloatingPanel
ComboBox <|-- FilterComboBox
class FilterComboBox {
}
class Popup {
}
class ArrowListView {
}
class FloatingPanel {
}
%% Relationships that existed before and are now removed
FilterComboBox *-- Popup : removed_custom_popup
Popup *-- ArrowListView : removed_contentItem
Popup *-- FloatingPanel : removed_background
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
deepin pr auto review我来对这个 QML 文件的 diff 变更进行审查:
代码质量:
代码安全:
代码性能:
代码逻辑:
总体建议:
建议添加相关的测试用例来验证这些改动不会影响现有功能。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: JWWTSL, lzwind 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 |
|
/forcemerge |
|
This pr force merged! (status: unstable) |
log: Removed the error dialog box, restoring the control to its default framework behavior.
bug: 622f100
Summary by Sourcery
Revert the custom popup implementation for the filter combo box to use the default framework dropdown behavior, addressing display issues with the album content classification menu.