-
Notifications
You must be signed in to change notification settings - Fork 1
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
Bump to 0.3.6 #78
Bump to 0.3.6 #78
Conversation
Codecov Report
@@ Coverage Diff @@
## main #78 +/- ##
===========================================
- Coverage 100.00% 95.64% -4.36%
===========================================
Files 18 19 +1
Lines 2082 2295 +213
===========================================
+ Hits 2082 2195 +113
- Misses 0 100 +100
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Resolved issues in the following files via DeepSource Autofix: 1. torrentfileQt/menu.py 2. torrentfileQt/utils.py
|
||
def dark_theme(self): | ||
@staticmethod | ||
def dark_theme(): | ||
"""Change the GUI application to dark theme.""" |
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.
changed them back to instance methods since I am now using the self
argument in the method body and no longer relying on the QApplication class method for grabbing the app instance.
|
||
def apply_theme(self, theme): | ||
"""Apply the given stylesheet.""" | ||
self.setStyleSheet(theme) |
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.
Added theme management to the instance of the QApplication.
No description provided.