-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bugfix] Fix profile_level_icon_widget paintEvent
when running seraphine from code, a error occurred: QPaintDevice: Cannot destroy paint device that is being painted. the traceback shows that the parameter type of self.image.scaled() should be int, but actually self.sep is float. changes are as follows: 1. convert self.sep from float into int explicitly. 2. ignore virtual environment. (e.g. venv and seraphine)
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,8 @@ mymake.ps1 | |
render.html | ||
|
||
# 忽略日志文件 | ||
log | ||
log | ||
|
||
# 忽略虚拟环境 | ||
venv | ||
seraphine |
This file contains 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