We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 262f07b commit 5542b07Copy full SHA for 5542b07
main-gui.py
@@ -26,8 +26,8 @@ def save_img():
26
QMessageBox.StandardButton.Ok)
27
return
28
29
- if not (out_file.lower().endswith(".jpg") and
30
- out_file.lower().endswith(".png") and
+ if not (out_file.lower().endswith(".jpg") or
+ out_file.lower().endswith(".png") or
31
out_file.lower().endswith(".jpeg")):
32
out_file += ".jpg"
33
0 commit comments