-
Notifications
You must be signed in to change notification settings - Fork 66
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
Dark mode #175
base: master
Are you sure you want to change the base?
Dark mode #175
Conversation
@@ -113,10 +110,13 @@ def __updateDefaultTextColor(self): | |||
# type: () -> None | |||
if self.__styleState & QStyle.State_Selected \ | |||
and not self.__styleState & QStyle.State_Editing: | |||
role = QPalette.HighlightedText | |||
bgRole = QPalette.Light |
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.
I rebased this just enough so I could try this with biolab/orange3#5287. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #175 +/- ##
==========================================
+ Coverage 74.73% 74.78% +0.04%
==========================================
Files 96 97 +1
Lines 20621 20770 +149
==========================================
+ Hits 15411 15532 +121
- Misses 5210 5238 +28
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Refactored to avoid circular imports
Fixes #67