-
Notifications
You must be signed in to change notification settings - Fork 55
fix: incorrect windowText for osd #1078
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
windowText is not opacity for most Control, so we change the windowText of root Control. pms: BUG-311111
Reviewer's Guide by SourceryThis pull request fixes an issue where the windowText color role was not being applied correctly for OSD. The windowText property is now applied to the root Control in the OSD, and the windowText color role is set for the description label in the windoweffect OSD. Updated class diagram for OSD main.qmlclassDiagram
class Window {
isSingleView: bool
osdView: Item
}
class Control {
Palette textColor
Repeater appletItems
}
class Palette {
Color normal
Color normalDark
}
class Color {
}
Window -- Control : contains
Control -- Palette : has
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
deepin pr auto review代码审查意见:
总体来说,代码的修改看起来是合理的,但是需要确保所有使用的属性和变量都有正确的定义,并且考虑性能和可维护性。 |
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.
Hey @18202781743 - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider whether the
textColorproperty should be defined outside of theControlblock for better organization.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: 18202781743, mhduiy 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: blocked) |
windowText is not opacity for most Control, so we change the
windowText of root Control.
pms: BUG-311111
Summary by Sourcery
Fix incorrect window text color for OSD (On-Screen Display) controls
Bug Fixes:
Enhancements: